diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index a679fc4d127..46432a8e388 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -301,6 +301,10 @@ Release History * Fix #6371: Support filename and environment variable completion in Bash +**NetAppFiles** + +* Modified volume create to allow data protection volumes and added cmdlets for replication operations, approve, pause, resume and remove. + **Network** * Fix #2092: az network dns record-set add/remove: add warning when record-set is not found. In the future, an extra argument will be supported to confirm this auto creation. 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 e007767bbe5..f4bac49c017 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -337,7 +337,15 @@ - name: --subnet short-summary: The ARM Id or name of the subnet for the vnet. If omitted 'default' will be used - name: --protocol-types - short-summary: Space seperated list of protocols that the volume can use + short-summary: Space seperated list of protocols that the volume can use, available protocols are "NFSv4.1", "NFSv3", "CIFS" + - name: --volume-type + short-summary: Whether the volume should be a data protection volume ("DataProtection"), empty if this is not a data protection volume + - name: --endpoint-type + short-summary: Whether the volume is source ("src") or destination ("dst") + - name: --remote-volume-resource-id + short-summary: The volume id of the remote volume of the replication (the destination for "src" volume endpoints and the source for "dst" endpoints) + - name: --replication-schedule + short-summary: The replication schedule, e.g. "_10minutely, hourly, daily, weekly, monthly" - name: --tags short-summary: Space-separated tags in `key[=value]` format examples: @@ -362,6 +370,93 @@ az netappfiles volume delete -g mygroup --account-name myaccname --pool-name mypoolname --name myvolname """ +helps['netappfiles volume replication'] = """ +type: group +short-summary: Manage Azure NetApp Files (ANF) Volume replication operations. +""" + +helps['netappfiles volume replication approve'] = """ +type: command +short-summary: Authorize a volume as a replication destination for a specified source. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --name --volume-name -n -v + short-summary: The name of the replication source volume + - name: --remote-volume-resource-id -d + short-summary: The resource id of the destination replication volume +examples: + - name: Authorize the volume as the replication destination for the source + text: > + az netappfiles volume replication approve -g mygroup --account-name myaccname --pool-name mypoolname --name mysourcevolname --remote-volume-resource-id /subscriptions/69a75bda-882e-44d5-8431-63421204131c/resourceGroups/mygroup1/providers/Microsoft.NetApp/netAppAccounts/myaccount1/capacityPools/mypool1/volumes/mydestinationvolume +""" + +helps['netappfiles volume replication suspend'] = """ +type: command +short-summary: Suspend/break a volume replication for the specified destination volume. The replication process is suspended until resumed or deleted. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --name --volume-name -n -v + short-summary: The name of the replication destination volume +examples: + - name: Suspend the replication process + text: > + az netappfiles volume replication suspend -g mygroup --account-name myaccname --pool-name mypoolname --name mydestinationvolname +""" + +helps['netappfiles volume replication resume'] = """ +type: command +short-summary: Resync a volume replication for the specified destination volume. The replication process is resumed from source to destination. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --name --volume-name -n -v + short-summary: The name of the replication destination volume +examples: + - name: Resume the replication process + text: > + az netappfiles volume replication resume -g mygroup --account-name myaccname --pool-name mypoolname --name mydestinationvolname +""" + +helps['netappfiles volume replication remove'] = """ +type: command +short-summary: Delete a volume replication for the specified destination volume. The data replication objects of source and destination volumes will be removed. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --name --volume-name -n -v + short-summary: The name of the replication destination volume +examples: + - name: Delete the replication objects of the paired volumes + text: > + az netappfiles volume replication remove -g mygroup --account-name myaccname --pool-name mypoolname --name mydestinationvolname +""" + +helps['netappfiles volume replication status'] = """ +type: command +short-summary: Get the replication status for the specified replication volume. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --name --volume-name -n -v + short-summary: The name of the replication destination volume +examples: + - name: Get the replication status for the volume. Returns whether the replication is healthy, the replication schedule and the mirror state (whether replication is suspened/broken or synced/mirrored) + text: > + az netappfiles volume replication status -g mygroup --account-name myaccname --pool-name mypoolname --name mydestinationvolname +""" + helps['netappfiles volume export-policy'] = """ type: group short-summary: Manage Azure NetApp Files (ANF) Volume export policies. 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 ba725b45764..b1e34e17710 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py @@ -33,6 +33,10 @@ def load_arguments(self, _): with self.argument_context('netappfiles account ad list') as c: c.argument('account_name', help='The name of the ANF account', id_part=None) + load_additionalArguments(self, account_name_type, pool_name_type, volume_name_type) + + +def load_additionalArguments(self, account_name_type, pool_name_type, volume_name_type): with self.argument_context('netappfiles pool') as c: c.argument('account_name', id_part='name') c.argument('pool_name', pool_name_type, options_list=['--pool-name', '-p', '--name', '-n']) @@ -54,6 +58,12 @@ def load_arguments(self, _): c.argument('pool_name', pool_name_type, id_part=None) c.argument('volume_name', volume_name_type, options_list=['--volume-name', '-v', '--name', '-n'], id_part=None) + with self.argument_context('netappfiles volume replication approve') as c: + c.argument('account_name', id_part=None) + c.argument('pool_name', pool_name_type, id_part=None) + c.argument('volume_name', volume_name_type, options_list=['--volume-name', '-v', '--name', '-n'], id_part=None) + c.argument('remote_volume_resource_id', options_list=['--remote-volume-resource-id', '-d'], help='The id of the destination replication volume', id_part=None) + with self.argument_context('netappfiles volume export-policy add') as c: c.argument('unix_read_only', help="Indication of read only access", arg_type=get_three_state_flag()) c.argument('unix_read_write', help="Indication of read and write access", arg_type=get_three_state_flag()) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py index 89309783d19..90d08381df4 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py @@ -126,6 +126,16 @@ def load_command_table(self, _): doc_string_source='azure.mgmt.netapp.models#VolumePatch', exception_handler=netappfiles_exception_handler) + with self.command_group('netappfiles volume replication', netappfiles_volumes_sdk) as g: + g.custom_command('approve', 'authorize_replication', + client_factory=volumes_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#Volume', + exception_handler=netappfiles_exception_handler) + g.command('suspend', 'break_replication') + g.command('resume', 'resync_replication') + g.command('remove', 'delete_replication') + g.command('status', 'replication_status_method') + with self.command_group('netappfiles', netappfiles_mount_targets_sdk) as g: g.command('list-mount-targets', 'list') 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 929215c7d1f..315a357f21d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -6,7 +6,7 @@ # pylint: disable=line-too-long from knack.log import get_logger -from azure.mgmt.netapp.models import ActiveDirectory, NetAppAccount, NetAppAccountPatch, CapacityPool, CapacityPoolPatch, Volume, VolumePatch, VolumePropertiesExportPolicy, ExportPolicyRule, Snapshot +from azure.mgmt.netapp.models import ActiveDirectory, NetAppAccount, NetAppAccountPatch, CapacityPool, CapacityPoolPatch, Volume, VolumePatch, VolumePropertiesExportPolicy, ExportPolicyRule, Snapshot, ReplicationObject, VolumePropertiesDataProtection from azure.cli.core.commands.client_factory import get_subscription_id from msrestazure.tools import is_valid_resource_id, parse_resource_id @@ -24,6 +24,8 @@ def _update_mapper(existing, new, keys): setattr(new, key, new_value if new_value is not None else existing_value) +# -- account -- + # pylint: disable=unused-argument # account update - active_directory is amended with subgroup commands def create_account(cmd, client, account_name, resource_group_name, location, tags=None): @@ -74,6 +76,8 @@ def patch_account(cmd, instance, account_name, resource_group_name, tags=None): return body +# -- pool -- + def create_pool(cmd, client, account_name, pool_name, resource_group_name, service_level, location, size, tags=None): body = CapacityPool(service_level=service_level, size=int(size) * tib_scale, location=location, tags=tags) return client.create_or_update(body, resource_group_name, account_name, pool_name) @@ -89,7 +93,9 @@ 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, file_path, usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, tags=None): +# -- volume -- +# pylint: disable=too-many-locals +def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, file_path, usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, volume_type=None, endpoint_type=None, replication_schedule=None, remote_volume_resource_id=None, tags=None): subs_id = get_subscription_id(cmd.cli_ctx) # determine vnet - supplied value can be name or ARM resource Id @@ -119,6 +125,18 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr else: volume_export_policy = None + # if we have a data protection volume requested then build the component + if volume_type == "DataProtection": + replication = ReplicationObject( + endpoint_type=endpoint_type, + replication_schedule=replication_schedule, + remote_volume_resource_id=remote_volume_resource_id + ) + + data_protection = VolumePropertiesDataProtection(replication=replication) + else: + data_protection = None + subnet_id = "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Network/virtualNetworks/%s/subnets/%s" % (subs_id, subnet_rg, vnet, subnet) body = Volume( usage_threshold=int(usage_threshold) * gib_scale, @@ -128,6 +146,8 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr subnet_id=subnet_id, protocol_types=protocol_types, export_policy=volume_export_policy, + volume_type=volume_type, + data_protection=data_protection, tags=tags) return client.create_or_update(body, resource_group_name, account_name, pool_name, volume_name) @@ -144,6 +164,7 @@ def patch_volume(cmd, instance, usage_threshold=None, service_level=None, protoc return params +# -- volume export policy -- # add new rule to policy def add_export_policy_rule(cmd, instance, allowed_clients, rule_index, unix_read_only, unix_read_write, cifs, nfsv3, nfsv41): rules = [] @@ -179,6 +200,15 @@ def remove_export_policy_rule(cmd, instance, rule_index): return instance +# -- volume replication -- + +# authorize replication (targets source volume with destination volume in payload) +def authorize_replication(cmd, client, resource_group_name, account_name, pool_name, volume_name, remote_volume_resource_id): + return client.authorize_replication(resource_group_name, account_name, pool_name, volume_name, remote_volume_resource_id) + + +# -- snapshot -- + def create_snapshot(cmd, client, account_name, pool_name, volume_name, snapshot_name, resource_group_name, location, file_system_id=None): body = Snapshot(location=location, file_system_id=file_system_id) return client.create(body, resource_group_name, account_name, pool_name, volume_name, snapshot_name) diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml index 379e62d26b8..fc63017e30a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_active_directory.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westcentralus", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '57' + - '56' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A24%3A32.3821043Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.6098879Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' 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/c8c9cd73-04f9-4ddb-b47d-c53135a2e63f?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06193a15-9163-4ec6-96be-060fd62d9faf?api-version=2019-10-01 cache-control: - no-cache content-length: - - '484' + - '482' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:24:32 GMT + - Thu, 20 Feb 2020 15:22:32 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.3821043Z'" + - W/"datetime'2020-02-20T15%3A22%3A32.6098879Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -74,13 +74,13 @@ interactions: ParameterSetName: - -g -a -l --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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c8c9cd73-04f9-4ddb-b47d-c53135a2e63f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06193a15-9163-4ec6-96be-060fd62d9faf?api-version=2019-10-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c8c9cd73-04f9-4ddb-b47d-c53135a2e63f","name":"c8c9cd73-04f9-4ddb-b47d-c53135a2e63f","status":"Succeeded","startTime":"2019-07-24T15:24:32.239602Z","endTime":"2019-07-24T15:24:32.5093261Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/06193a15-9163-4ec6-96be-060fd62d9faf","name":"06193a15-9163-4ec6-96be-060fd62d9faf","status":"Succeeded","startTime":"2020-02-20T15:22:32.1617889Z","endTime":"2020-02-20T15:22:33.3893653Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:04 GMT + - Thu, 20 Feb 2020 15:23:03 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tests_rg_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A24%3A32.5101958Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.2755084Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '484' + - '483' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:04 GMT + - Thu, 20 Feb 2020 15:23:04 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.5101958Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.2755084Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain 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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A24%3A32.5101958Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.2755084Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '484' + - '483' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:06 GMT + - Thu, 20 Feb 2020 15:23:06 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.5101958Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.2755084Z'" expires: - '-1' pragma: @@ -226,9 +226,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"activeDirectories": [{"username": "aduser", - "domain": "westcentralus", "password": "aduser", "dns": "1.2.3.4", "smbServerName": - "SMBSERVER"}]}}' + body: '{"properties": {"activeDirectories": [{"username": "aduser", "password": + "aduser", "domain": "westcentralus", "dns": "1.2.3.4", "smbServerName": "SMBSERVER"}]}}' headers: Accept: - application/json @@ -245,28 +244,28 @@ interactions: ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain 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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A25%3A07.4010066Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"8acea1dc-384d-029b-c898-e701a26d5444","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.3243782Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '741' + - '740' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:07 GMT + - Thu, 20 Feb 2020 15:23:10 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.4010066Z'" + - W/"datetime'2020-02-20T15%3A23%3A09.3243782Z'" expires: - '-1' pragma: @@ -284,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -304,28 +303,28 @@ interactions: ParameterSetName: - -g -n 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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A25%3A07.7132286Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"8acea1dc-384d-029b-c898-e701a26d5444","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A10.4244118Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '741' + - '740' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:08 GMT + - Thu, 20 Feb 2020 15:23:12 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.7132286Z'" + - W/"datetime'2020-02-20T15%3A23%3A10.4244118Z'" expires: - '-1' pragma: @@ -361,28 +360,28 @@ interactions: ParameterSetName: - -g -n --active-directory 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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A25%3A07.7132286Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002","activeDirectories":[{"activeDirectoryId":"8acea1dc-384d-029b-c898-e701a26d5444","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A10.4244118Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '741' + - '740' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:09 GMT + - Thu, 20 Feb 2020 15:23:13 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.7132286Z'" + - W/"datetime'2020-02-20T15%3A23%3A10.4244118Z'" expires: - '-1' pragma: @@ -405,8 +404,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"activeDirectories": []}, "location": - "westcentralus", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"activeDirectories": []}}' headers: Accept: - application/json @@ -417,34 +416,36 @@ interactions: Connection: - keep-alive Content-Length: - - '98' + - '97' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --active-directory 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 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 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-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: !!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-24T15%3A25%3A11.4969192Z''\"","location":"westcentralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A15.3190139Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"a0b337d6-0a79-e920-0748-6b06ed57f3ef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers"}]}}' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/abde66ce-ddd1-44f7-91bb-ddc40e41a81b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '484' + - '739' content-type: - application/json; charset=utf-8 date: - - Wed, 24 Jul 2019 15:25:11 GMT + - Thu, 20 Feb 2020 15:23:15 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A11.4969192Z'" + - W/"datetime'2020-02-20T15%3A23%3A15.3190139Z'" expires: - '-1' pragma: @@ -462,7 +463,115 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account ad remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --active-directory + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/abde66ce-ddd1-44f7-91bb-ddc40e41a81b?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/abde66ce-ddd1-44f7-91bb-ddc40e41a81b","name":"abde66ce-ddd1-44f7-91bb-ddc40e41a81b","status":"Succeeded","startTime":"2020-02-20T15:23:14.9432627Z","endTime":"2020-02-20T15:23:16.7401711Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '581' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Feb 2020 15:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account ad remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --active-directory + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A16.5701909Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '483' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Feb 2020 15:23:46 GMT + etag: + - W/"datetime'2020-02-20T15%3A23%3A16.5701909Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff x-powered-by: - ASP.NET status: 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 fc76ffaeb42..2aa54393942 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '74' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A38.2180344Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.3615893Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50d14e5-f828-4900-b620-587fa22e4245?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2d8c52a9-208e-4f23-957d-4dde3bf12d28?api-version=2019-10-01 cache-control: - no-cache content-length: - - '493' + - '498' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:08:38 GMT + - Thu, 20 Feb 2020 15:22:32 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A38.2180344Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.3615893Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50d14e5-f828-4900-b620-587fa22e4245?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2d8c52a9-208e-4f23-957d-4dde3bf12d28?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f50d14e5-f828-4900-b620-587fa22e4245","name":"f50d14e5-f828-4900-b620-587fa22e4245","status":"Succeeded","startTime":"2019-11-15T15:08:38.1692159Z","endTime":"2019-11-15T15:08:38.2786496Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2d8c52a9-208e-4f23-957d-4dde3bf12d28","name":"2d8c52a9-208e-4f23-957d-4dde3bf12d28","status":"Succeeded","startTime":"2020-02-20T15:22:32.7661132Z","endTime":"2020-02-20T15:22:34.1254864Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 20 Feb 2020 15:23:04 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A38.2780771Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A34.0212103Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '494' + - '499' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 20 Feb 2020 15:23:04 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A38.2780771Z'" + - W/"datetime'2020-02-20T15%3A22%3A34.0212103Z'" expires: - '-1' pragma: @@ -182,26 +182,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A38.2780771Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A34.0212103Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '506' + - '511' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:10 GMT + - Thu, 20 Feb 2020 15:23:06 GMT expires: - '-1' pragma: @@ -239,12 +239,12 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: string: '' @@ -252,17 +252,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb44d110-bca7-4baf-9e54-1043657427e1?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:09:13 GMT + - Thu, 20 Feb 2020 15:23:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb44d110-bca7-4baf-9e54-1043657427e1?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -294,24 +294,24 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb44d110-bca7-4baf-9e54-1043657427e1?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb44d110-bca7-4baf-9e54-1043657427e1","name":"fb44d110-bca7-4baf-9e54-1043657427e1","status":"Succeeded","startTime":"2019-11-15T15:09:13.3216707Z","endTime":"2019-11-15T15:09:13.3841367Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f018ae9-3436-4b9c-a2f3-6195f87365d8","name":"5f018ae9-3436-4b9c-a2f3-6195f87365d8","status":"Succeeded","startTime":"2020-02-20T15:23:09.7353376Z","endTime":"2020-02-20T15:23:10.8603218Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:44 GMT + - Thu, 20 Feb 2020 15:23:41 GMT expires: - '-1' pragma: @@ -347,16 +347,18 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: string: '{"value":[]}' headers: + access-control-expose-headers: + - Request-Context cache-control: - no-cache content-length: @@ -364,22 +366,30 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:46 GMT + - Thu, 20 Feb 2020 15:23:43 GMT expires: - '-1' pragma: - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -390,36 +400,36 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '74' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A49.0517652Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A47.5212688Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ed8ac36-ce66-4090-add2-d958d0655677?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e01118a8-2dea-4f29-8aa4-032937043a31?api-version=2019-10-01 cache-control: - no-cache content-length: - - '493' + - '498' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:49 GMT + - Thu, 20 Feb 2020 15:23:47 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A49.0517652Z'" + - W/"datetime'2020-02-20T15%3A23%3A47.5212688Z'" expires: - '-1' pragma: @@ -453,24 +463,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ed8ac36-ce66-4090-add2-d958d0655677?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e01118a8-2dea-4f29-8aa4-032937043a31?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ed8ac36-ce66-4090-add2-d958d0655677","name":"9ed8ac36-ce66-4090-add2-d958d0655677","status":"Succeeded","startTime":"2019-11-15T15:09:49.005176Z","endTime":"2019-11-15T15:09:49.1145162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e01118a8-2dea-4f29-8aa4-032937043a31","name":"e01118a8-2dea-4f29-8aa4-032937043a31","status":"Succeeded","startTime":"2020-02-20T15:23:47.1122687Z","endTime":"2020-02-20T15:23:48.3310241Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:21 GMT + - Thu, 20 Feb 2020 15:24:19 GMT expires: - '-1' pragma: @@ -506,26 +516,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A49.116811Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A48.2259316Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '493' + - '499' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:21 GMT + - Thu, 20 Feb 2020 15:24:19 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A49.116811Z'" + - W/"datetime'2020-02-20T15%3A23%3A48.2259316Z'" expires: - '-1' pragma: @@ -561,26 +571,26 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A49.116811Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A48.2259316Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '505' + - '511' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:24 GMT + - Thu, 20 Feb 2020 15:24:20 GMT expires: - '-1' pragma: @@ -618,12 +628,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: string: '' @@ -631,17 +641,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/81e5826e-4604-41fa-9065-871047458f36?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:10:26 GMT + - Thu, 20 Feb 2020 15:24:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/81e5826e-4604-41fa-9065-871047458f36?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -653,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -673,24 +683,24 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/81e5826e-4604-41fa-9065-871047458f36?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/81e5826e-4604-41fa-9065-871047458f36","name":"81e5826e-4604-41fa-9065-871047458f36","status":"Succeeded","startTime":"2019-11-15T15:10:27.3921276Z","endTime":"2019-11-15T15:10:27.4858604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb712f06-eb54-414d-96aa-f5f76ed539fa","name":"bb712f06-eb54-414d-96aa-f5f76ed539fa","status":"Succeeded","startTime":"2020-02-20T15:24:23.7883861Z","endTime":"2020-02-20T15:24:24.8195791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:58 GMT + - Thu, 20 Feb 2020 15:24:55 GMT expires: - '-1' pragma: @@ -726,12 +736,12 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: string: '{"value":[]}' @@ -743,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:59 GMT + - Thu, 20 Feb 2020 15:24:57 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml index dfe2da8a592..70e5c279a27 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A38.8637435Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.4940157Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9c5fc89-ba94-4aca-9dcf-d32de82c4928?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/18addfc7-d5ac-4b58-ac0d-fdaad772633b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:11:38 GMT + - Thu, 20 Feb 2020 15:35:12 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A38.8637435Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.4940157Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9c5fc89-ba94-4aca-9dcf-d32de82c4928?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/18addfc7-d5ac-4b58-ac0d-fdaad772633b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a9c5fc89-ba94-4aca-9dcf-d32de82c4928","name":"a9c5fc89-ba94-4aca-9dcf-d32de82c4928","status":"Succeeded","startTime":"2019-11-15T15:11:38.8151677Z","endTime":"2019-11-15T15:11:38.9245012Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/18addfc7-d5ac-4b58-ac0d-fdaad772633b","name":"18addfc7-d5ac-4b58-ac0d-fdaad772633b","status":"Succeeded","startTime":"2020-02-20T15:35:12.0229719Z","endTime":"2020-02-20T15:35:13.6011236Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:10 GMT + - Thu, 20 Feb 2020 15:35:43 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A38.9247865Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A13.4979588Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:11 GMT + - Thu, 20 Feb 2020 15:35:43 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A38.9247865Z'" + - W/"datetime'2020-02-20T15%3A35%3A13.4979588Z'" expires: - '-1' pragma: @@ -169,8 +169,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -181,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '140' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A15.092504Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.044417Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab64f60b-7518-4b7d-9c51-3b9cc34b546d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2bfe6f6-1509-40d5-9621-e927afd15e0e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '582' + - '587' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:14 GMT + - Thu, 20 Feb 2020 15:35:48 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A15.092504Z'" + - W/"datetime'2020-02-20T15%3A35%3A48.044417Z'" expires: - '-1' pragma: @@ -244,24 +244,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab64f60b-7518-4b7d-9c51-3b9cc34b546d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2bfe6f6-1509-40d5-9621-e927afd15e0e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab64f60b-7518-4b7d-9c51-3b9cc34b546d","name":"ab64f60b-7518-4b7d-9c51-3b9cc34b546d","status":"Succeeded","startTime":"2019-11-15T15:12:14.995455Z","endTime":"2019-11-15T15:12:15.4017201Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2bfe6f6-1509-40d5-9621-e927afd15e0e","name":"e2bfe6f6-1509-40d5-9621-e927afd15e0e","status":"Succeeded","startTime":"2020-02-20T15:35:47.6484863Z","endTime":"2020-02-20T15:35:49.0174124Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:46 GMT + - Thu, 20 Feb 2020 15:36:19 GMT expires: - '-1' pragma: @@ -297,26 +297,26 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A15.4007226Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"b8499a3d-4a34-e521-8f33-ebf3eaaedb27","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.9172334Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"1ed74fe2-8ede-1462-a0a3-eb868942d39f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '691' + - '696' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:46 GMT + - Thu, 20 Feb 2020 15:36:20 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A15.4007226Z'" + - W/"datetime'2020-02-20T15%3A35%3A48.9172334Z'" expires: - '-1' pragma: @@ -352,26 +352,26 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A15.4007226Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"b8499a3d-4a34-e521-8f33-ebf3eaaedb27","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.9172334Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"1ed74fe2-8ede-1462-a0a3-eb868942d39f","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '703' + - '708' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:49 GMT + - Thu, 20 Feb 2020 15:36:21 GMT expires: - '-1' pragma: @@ -409,12 +409,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: string: '' @@ -422,17 +422,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b98482d7-4f2b-4017-876d-95d86b2bd02c?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:12:51 GMT + - Thu, 20 Feb 2020 15:36:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b98482d7-4f2b-4017-876d-95d86b2bd02c?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -464,24 +464,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b98482d7-4f2b-4017-876d-95d86b2bd02c?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b98482d7-4f2b-4017-876d-95d86b2bd02c","name":"b98482d7-4f2b-4017-876d-95d86b2bd02c","status":"Succeeded","startTime":"2019-11-15T15:12:51.8532758Z","endTime":"2019-11-15T15:12:52.1345191Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/721f9018-b300-4ee0-8297-aaf30219686d","name":"721f9018-b300-4ee0-8297-aaf30219686d","status":"Succeeded","startTime":"2020-02-20T15:36:24.7013074Z","endTime":"2020-02-20T15:36:25.6754429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:23 GMT + - Thu, 20 Feb 2020 15:36:56 GMT expires: - '-1' pragma: @@ -517,12 +517,12 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-10-01 response: body: string: '{"value":[]}' @@ -536,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:25 GMT + - Thu, 20 Feb 2020 15:36:58 GMT expires: - '-1' pragma: @@ -559,8 +559,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -571,36 +571,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '140' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A13%3A28.6778187Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A02.4062795Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6db227e7-de8f-4dd9-a3dd-46a443f1baf5?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f5ec4f1e-8918-41df-8090-06fe80d08948?api-version=2019-10-01 cache-control: - no-cache content-length: - - '583' + - '588' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:28 GMT + - Thu, 20 Feb 2020 15:37:02 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A28.6778187Z'" + - W/"datetime'2020-02-20T15%3A37%3A02.4062795Z'" expires: - '-1' pragma: @@ -614,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -634,24 +634,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6db227e7-de8f-4dd9-a3dd-46a443f1baf5?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f5ec4f1e-8918-41df-8090-06fe80d08948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6db227e7-de8f-4dd9-a3dd-46a443f1baf5","name":"6db227e7-de8f-4dd9-a3dd-46a443f1baf5","status":"Succeeded","startTime":"2019-11-15T15:13:28.6097812Z","endTime":"2019-11-15T15:13:28.7972911Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f5ec4f1e-8918-41df-8090-06fe80d08948","name":"f5ec4f1e-8918-41df-8090-06fe80d08948","status":"Succeeded","startTime":"2020-02-20T15:37:02.0026443Z","endTime":"2020-02-20T15:37:03.4248362Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:00 GMT + - Thu, 20 Feb 2020 15:37:33 GMT expires: - '-1' pragma: @@ -687,26 +687,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A13%3A28.7898983Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"82f6e6de-590a-0902-59d2-786802dfdffc","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A03.3251391Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"dd6408a3-1fd8-0b95-3a49-501e4a6249db","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '691' + - '696' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:00 GMT + - Thu, 20 Feb 2020 15:37:33 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A28.7898983Z'" + - W/"datetime'2020-02-20T15%3A37%3A03.3251391Z'" expires: - '-1' pragma: @@ -744,12 +744,12 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: string: '' @@ -757,17 +757,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c09e6628-d66f-44db-a160-da8666653adf?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:14:03 GMT + - Thu, 20 Feb 2020 15:37:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c09e6628-d66f-44db-a160-da8666653adf?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -799,24 +799,24 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c09e6628-d66f-44db-a160-da8666653adf?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c09e6628-d66f-44db-a160-da8666653adf","name":"c09e6628-d66f-44db-a160-da8666653adf","status":"Succeeded","startTime":"2019-11-15T15:14:03.6068196Z","endTime":"2019-11-15T15:14:03.7630662Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c705e092-a6a8-44f1-8a73-7b8c2a400875","name":"c705e092-a6a8-44f1-8a73-7b8c2a400875","status":"Succeeded","startTime":"2020-02-20T15:37:37.1733703Z","endTime":"2020-02-20T15:37:37.9764617Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:35 GMT + - Thu, 20 Feb 2020 15:38:08 GMT expires: - '-1' pragma: @@ -852,12 +852,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2019-10-01 response: body: string: '{"value":[]}' @@ -871,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:37 GMT + - Thu, 20 Feb 2020 15:38:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml index c0d62f096a1..0ffdac082b0 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,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -18,26 +18,28 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"c74c2d60-c6fe-49b1-ac83-12b06ef7d96e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1ec3a1d4-e89e-455c-96be-673be2e0ce50\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"e13ebe66-db18-49de-a3a1-908d4d97d2fe\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"03e51a1e-d8a8-4cf0-bfcd-937a849dca5b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/04423924-bf52-40f1-9ce8-b26d6890c98e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b6cb711e-fe16-40fc-824f-76c75c159c2a?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +47,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:05 GMT + - Thu, 06 Feb 2020 11:12:13 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e1bb270-fe94-4dfd-82ea-1be65940f3d2 + - d709c46e-6060-477f-9f14-5e1e23435be0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -78,13 +80,13 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/04423924-bf52-40f1-9ce8-b26d6890c98e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b6cb711e-fe16-40fc-824f-76c75c159c2a?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -93,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Thu, 06 Feb 2020 11:12:18 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1d87e61-dd94-450b-a04d-02881e93ce0b + - f426cbe7-9ce3-4613-a5a4-e370cbadc339 status: code: 200 message: OK @@ -128,21 +130,23 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"5fc80edc-24ed-4ea7-9e97-758f78ef854e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1ec3a1d4-e89e-455c-96be-673be2e0ce50\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"74d2c1be-9d5f-43b0-b3d0-694b9ada996c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"03e51a1e-d8a8-4cf0-bfcd-937a849dca5b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Thu, 06 Feb 2020 11:12:18 GMT etag: - - W/"5fc80edc-24ed-4ea7-9e97-758f78ef854e" + - W/"74d2c1be-9d5f-43b0-b3d0-694b9ada996c" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d65b0681-c11f-497e-bd5b-e447201f4dd7 + - 31b1260b-7912-40ef-bd20-25055644a19e status: code: 200 message: OK @@ -188,23 +192,25 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"5fc80edc-24ed-4ea7-9e97-758f78ef854e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1ec3a1d4-e89e-455c-96be-673be2e0ce50\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"74d2c1be-9d5f-43b0-b3d0-694b9ada996c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"03e51a1e-d8a8-4cf0-bfcd-937a849dca5b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Thu, 06 Feb 2020 11:12:19 GMT etag: - - W/"5fc80edc-24ed-4ea7-9e97-758f78ef854e" + - W/"74d2c1be-9d5f-43b0-b3d0-694b9ada996c" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9bc77f58-f7c5-438e-9b2c-c3f3641dd284 + - 35059aab-6f20-4fe3-81df-cb1f6dbf1376 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.5.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-lefr-02"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-lefr-02"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"8bbfc171-341f-40e9-8e8b-e68b15637721\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1ec3a1d4-e89e-455c-96be-673be2e0ce50\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"8bbfc171-341f-40e9-8e8b-e68b15637721\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"8bbfc171-341f-40e9-8e8b-e68b15637721\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"cb012929-5b58-4234-a416-c8f016f204ec\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"03e51a1e-d8a8-4cf0-bfcd-937a849dca5b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"cb012929-5b58-4234-a416-c8f016f204ec\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"cb012929-5b58-4234-a416-c8f016f204ec\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/52ed1fdb-cfd6-49af-8269-1666fdbd1694?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1036eaea-39d6-4be5-9b5d-00607c1ad540?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Thu, 06 Feb 2020 11:12:21 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16ea0226-0ff0-4e6f-a9ca-0aa69f95c34e + - 3b96c716-a206-45ef-80b4-b5b6e19def9e x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -340,13 +347,13 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/52ed1fdb-cfd6-49af-8269-1666fdbd1694?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1036eaea-39d6-4be5-9b5d-00607c1ad540?api-version=2019-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -355,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Thu, 06 Feb 2020 11:12:25 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ab84da5-e1d3-4b83-a7e7-4d3ce0af39ed + - b4ee9ca8-9a1c-4e86-a7cd-2d320c2a9332 status: code: 200 message: OK @@ -390,37 +397,39 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"00602f7d-b201-4291-99f6-eec064fe71c5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1ec3a1d4-e89e-455c-96be-673be2e0ce50\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"00602f7d-b201-4291-99f6-eec064fe71c5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"00602f7d-b201-4291-99f6-eec064fe71c5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"53d8b662-2d34-4ef4-b436-0e344e9d7e44\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"03e51a1e-d8a8-4cf0-bfcd-937a849dca5b\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"53d8b662-2d34-4ef4-b436-0e344e9d7e44\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"53d8b662-2d34-4ef4-b436-0e344e9d7e44\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +438,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Thu, 06 Feb 2020 11:12:26 GMT etag: - - W/"00602f7d-b201-4291-99f6-eec064fe71c5" + - W/"53d8b662-2d34-4ef4-b436-0e344e9d7e44" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1468f460-fb11-4979-99cc-7e4b92d3b079 + - e9dda3db-63d7-4b50-92c2-4c940233cf95 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: !!python/unicode '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +473,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.6014484Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-06T11%3A12%3A33.7855424Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2c2854a-1616-4514-89e1-5fb401bd000c?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dfd6eff-90b2-4c17-9a18-4aeac7286ac8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:20 GMT + - Thu, 06 Feb 2020 11:12:34 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.6014484Z'" + - W/"datetime'2020-02-06T11%3A12%3A33.7855424Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' x-powered-by: - ASP.NET status: @@ -527,24 +536,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2c2854a-1616-4514-89e1-5fb401bd000c?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dfd6eff-90b2-4c17-9a18-4aeac7286ac8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2c2854a-1616-4514-89e1-5fb401bd000c","name":"f2c2854a-1616-4514-89e1-5fb401bd000c","status":"Succeeded","startTime":"2020-02-07T16:13:20.4987863Z","endTime":"2020-02-07T16:13:20.7488391Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5dfd6eff-90b2-4c17-9a18-4aeac7286ac8","name":"5dfd6eff-90b2-4c17-9a18-4aeac7286ac8","status":"Succeeded","startTime":"2020-02-06T11:12:33.3344799Z","endTime":"2020-02-06T11:12:34.5689125Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:51 GMT + - Thu, 06 Feb 2020 11:13:06 GMT expires: - '-1' pragma: @@ -580,26 +589,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.747552Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-06T11%3A12%3A34.466186Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Thu, 06 Feb 2020 11:13:06 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.747552Z'" + - W/"datetime'2020-02-06T11%3A12%3A34.466186Z'" expires: - '-1' pragma: @@ -622,8 +631,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": - "Premium"}}' + body: !!python/unicode '{"location": "westus2stage", "properties": {"serviceLevel": + "Premium", "size": 4398046511104}}' headers: Accept: - application/json @@ -634,36 +643,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A57.2572728Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-06T11%3A13%3A12.6452541Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ed45f0f-22a2-4989-b4e5-75a3addb202a?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdcd958d-e4f4-4f19-ae38-db1ea1d7dfb6?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:57 GMT + - Thu, 06 Feb 2020 11:13:12 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A57.2572728Z'" + - W/"datetime'2020-02-06T11%3A13%3A12.6452541Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -697,24 +706,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ed45f0f-22a2-4989-b4e5-75a3addb202a?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdcd958d-e4f4-4f19-ae38-db1ea1d7dfb6?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ed45f0f-22a2-4989-b4e5-75a3addb202a","name":"2ed45f0f-22a2-4989-b4e5-75a3addb202a","status":"Succeeded","startTime":"2020-02-07T16:13:57.148857Z","endTime":"2020-02-07T16:13:57.4614625Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cdcd958d-e4f4-4f19-ae38-db1ea1d7dfb6","name":"cdcd958d-e4f4-4f19-ae38-db1ea1d7dfb6","status":"Succeeded","startTime":"2020-02-06T11:13:12.1520601Z","endTime":"2020-02-06T11:13:13.7780056Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:28 GMT + - Thu, 06 Feb 2020 11:13:45 GMT expires: - '-1' pragma: @@ -750,26 +759,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A57.4454061Z''\"","location":"westus2","properties":{"poolId":"df7c4aac-1811-6cb6-7ce2-1894182e72cc","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_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-06T11%3A13%3A13.5581161Z''\"","location":"westus2stage","properties":{"poolId":"39faf086-fb38-8706-588a-1985a7b74a79","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:28 GMT + - Thu, 06 Feb 2020 11:13:46 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A57.4454061Z'" + - W/"datetime'2020-02-06T11%3A13%3A13.5581161Z'" expires: - '-1' pragma: @@ -792,8 +801,9 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02", + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westus2stage"}' headers: Accept: - application/json @@ -804,37 +814,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '394' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A33.835036Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-06T11%3A13%3A55.5227626Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 cache-control: - no-cache content-length: - - '903' + - '909' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:33 GMT + - Thu, 06 Feb 2020 11:13:56 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A33.835036Z'" + - W/"datetime'2020-02-06T11%3A13%3A55.5227626Z'" expires: - '-1' pragma: @@ -848,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -869,186 +879,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:15:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:15:35 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:16:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:36 GMT + - Thu, 06 Feb 2020 11:14:28 GMT expires: - '-1' pragma: @@ -1085,24 +933,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:07 GMT + - Thu, 06 Feb 2020 11:14:58 GMT expires: - '-1' pragma: @@ -1139,24 +987,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:37 GMT + - Thu, 06 Feb 2020 11:15:29 GMT expires: - '-1' pragma: @@ -1193,24 +1041,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:07 GMT + - Thu, 06 Feb 2020 11:16:00 GMT expires: - '-1' pragma: @@ -1247,24 +1095,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:40 GMT + - Thu, 06 Feb 2020 11:16:30 GMT expires: - '-1' pragma: @@ -1301,24 +1149,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:11 GMT + - Thu, 06 Feb 2020 11:17:01 GMT expires: - '-1' pragma: @@ -1355,24 +1203,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:42 GMT + - Thu, 06 Feb 2020 11:17:31 GMT expires: - '-1' pragma: @@ -1409,24 +1257,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:12 GMT + - Thu, 06 Feb 2020 11:18:03 GMT expires: - '-1' pragma: @@ -1463,24 +1311,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:43 GMT + - Thu, 06 Feb 2020 11:18:33 GMT expires: - '-1' pragma: @@ -1517,24 +1365,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:14 GMT + - Thu, 06 Feb 2020 11:19:04 GMT expires: - '-1' pragma: @@ -1571,24 +1419,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Creating","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:44 GMT + - Thu, 06 Feb 2020 11:19:34 GMT expires: - '-1' pragma: @@ -1625,24 +1473,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f27c149d-bd7f-4856-9b04-5d21175f6948","name":"f27c149d-bd7f-4856-9b04-5d21175f6948","status":"Succeeded","startTime":"2020-02-06T11:13:55.1168453Z","endTime":"2020-02-06T11:19:42.8883324Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:14 GMT + - Thu, 06 Feb 2020 11:20:05 GMT expires: - '-1' pragma: @@ -1679,24 +1527,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-06T11%3A19%3A42.7137358Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_5cf32439","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","fileSystemId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1552' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:45 GMT + - Thu, 06 Feb 2020 11:20:06 GMT + etag: + - W/"datetime'2020-02-06T11%3A19%3A42.7137358Z'" expires: - '-1' pragma: @@ -1719,94 +1569,50 @@ interactions: code: 200 message: OK - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7"}, + "location": "westus2stage"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '100' + Content-Type: - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:23:16 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","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/westus2stage/operationResults/ecba7c64-20cc-4b54-9ceb-3705bdb8dfcc?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' + - '667' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:46 GMT + - Thu, 06 Feb 2020 11:20:16 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ecba7c64-20cc-4b54-9ceb-3705bdb8dfcc?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1815,17 +1621,15 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1834,31 +1638,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ecba7c64-20cc-4b54-9ceb-3705bdb8dfcc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ecba7c64-20cc-4b54-9ceb-3705bdb8dfcc","name":"ecba7c64-20cc-4b54-9ceb-3705bdb8dfcc","status":"Succeeded","startTime":"2020-02-06T11:20:15.2902578Z","endTime":"2020-02-06T11:20:17.7405297Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:16 GMT + - Thu, 06 Feb 2020 11:20:48 GMT expires: - '-1' pragma: @@ -1888,31 +1691,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"1ef8a340-011f-bbea-a8da-38d93eb4dec6","fileSystemId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","name":"cli-sn-000005","created":"2020-02-06T11:20:15Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:48 GMT + - Thu, 06 Feb 2020 11:20:49 GMT expires: - '-1' pragma: @@ -1942,31 +1744,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot list Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"1ef8a340-011f-bbea-a8da-38d93eb4dec6","fileSystemId":"e6595833-36c3-9c85-e4e2-1d0ac3b5c9b7","name":"cli-sn-000005","created":"2020-02-06T11:20:15Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '765' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:17 GMT + - Thu, 06 Feb 2020 11:20:52 GMT expires: - '-1' pragma: @@ -1988,2766 +1791,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:25:48 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:49 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:20 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:20 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:21 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:52 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:52 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:24 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16: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 --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:37:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:40:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:41:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:41:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:42:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:42:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:43:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:43:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:44:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:44:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:45:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:45:35 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:46:05 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:46:35 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:47:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Creating","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:47:36 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0bc177be-c6d7-42c8-99d8-ce89399050de","name":"0bc177be-c6d7-42c8-99d8-ce89399050de","status":"Succeeded","startTime":"2020-02-07T16:14:33.7148841Z","endTime":"2020-02-07T16:48:03.1866155Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:07 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A48%3A03.1987087Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"7240a60b-684c-81bd-a984-77cd51a86467","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_0ff80c30","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7240a60b-684c-81bd-a984-77cd51a86467","fileSystemId":"7240a60b-684c-81bd-a984-77cd51a86467","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1547' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:07 GMT - etag: - - W/"datetime'2020-02-07T16%3A48%3A03.1987087Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "properties": {"fileSystemId": "7240a60b-684c-81bd-a984-77cd51a86467"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"7240a60b-684c-81bd-a984-77cd51a86467","name":"cli-sn-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5cb1b0c5-56fa-44e3-a9bc-356a935e2193?api-version=2019-08-01 - cache-control: - - no-cache - content-length: - - '662' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5cb1b0c5-56fa-44e3-a9bc-356a935e2193?api-version=2019-08-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/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5cb1b0c5-56fa-44e3-a9bc-356a935e2193?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5cb1b0c5-56fa-44e3-a9bc-356a935e2193","name":"5cb1b0c5-56fa-44e3-a9bc-356a935e2193","status":"Succeeded","startTime":"2020-02-07T16:48:13.4113232Z","endTime":"2020-02-07T16:48:15.9724383Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '683' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:45 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bedb5ed9-dcf3-15e6-5fe2-640a516b1bfe","fileSystemId":"7240a60b-684c-81bd-a984-77cd51a86467","name":"cli-sn-000005","created":"2020-02-07T16:48:13Z"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:46 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot list - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-08-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"bedb5ed9-dcf3-15e6-5fe2-640a516b1bfe","fileSystemId":"7240a60b-684c-81bd-a984-77cd51a86467","name":"cli-sn-000005","created":"2020-02-07T16:48:13Z"}}]}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '760' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:48:49 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a -p -v -s - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 - response: - body: - string: '{"error":{"code":"InternalServerError","message":"Encountered internal - server error. Diagnostic information: timestamp ''20200207T164937Z'', subscription - id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', tracking id ''3d5d912f-bb2e-4c01-a33a-5db3f8293a83'', - request correlation id ''3d5d912f-bb2e-4c01-a33a-5db3f8293a83''."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '312' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:49:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 500 - message: Internal Server Error - request: body: null headers: @@ -4764,30 +1807,30 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '' + 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/westus2/operationResults/c10969e8-80b3-4a5c-9b62-ee3685ad1a5b?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f07d953-25b4-4f2c-8bb1-011d4db84d69?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:50:02 GMT + - Thu, 06 Feb 2020 11:20:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c10969e8-80b3-4a5c-9b62-ee3685ad1a5b?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f07d953-25b4-4f2c-8bb1-011d4db84d69?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -4799,7 +1842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14998' x-powered-by: - ASP.NET status: @@ -4819,24 +1862,24 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c10969e8-80b3-4a5c-9b62-ee3685ad1a5b?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f07d953-25b4-4f2c-8bb1-011d4db84d69?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c10969e8-80b3-4a5c-9b62-ee3685ad1a5b","name":"c10969e8-80b3-4a5c-9b62-ee3685ad1a5b","status":"Succeeded","startTime":"2020-02-07T16:50:02.5463851Z","endTime":"2020-02-07T16:50:04.9214331Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4f07d953-25b4-4f2c-8bb1-011d4db84d69","name":"4f07d953-25b4-4f2c-8bb1-011d4db84d69","status":"Succeeded","startTime":"2020-02-06T11:20:55.4919529Z","endTime":"2020-02-06T11:20:58.9784467Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '683' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:33 GMT + - Thu, 06 Feb 2020 11:21:27 GMT expires: - '-1' pragma: @@ -4872,15 +1915,15 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[]}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -4891,7 +1934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:35 GMT + - Thu, 06 Feb 2020 11:21:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml index 5236ba6bcf1..8f7b06c73e4 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"008b9f50-81d2-4bca-af02-fd8edbcf69c8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f13570fe-df4c-4e96-aacc-7b830247ac09\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"d914ae79-44a1-4014-9a97-c7af3ccb5c04\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"f9095ae8-5436-4356-824d-47d2dd3b6988\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/679f2639-bb9f-4859-9d0a-76d6ad181480?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1c5e400-e776-40b2-ab33-54730a17019e?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:05 GMT + - Wed, 19 Feb 2020 08:40:38 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e443be8c-55ed-4373-86ac-2e9679cc33a8 + - 59c97fd6-6345-4f5b-b339-9816d271ae01 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/679f2639-bb9f-4859-9d0a-76d6ad181480?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1c5e400-e776-40b2-ab33-54730a17019e?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 08:40:42 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c7958ee-4af6-48d3-a40a-92912be26fcc + - 2d5d8647-c5fa-4dd4-a77a-5087c141d603 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"4cf331b8-4000-42af-8500-7a192587cf6a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f13570fe-df4c-4e96-aacc-7b830247ac09\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"b89d1901-2622-441a-af86-6d238d0e1e7b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f9095ae8-5436-4356-824d-47d2dd3b6988\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 08:40:43 GMT etag: - - W/"4cf331b8-4000-42af-8500-7a192587cf6a" + - W/"b89d1901-2622-441a-af86-6d238d0e1e7b" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fb74b56-019b-4d01-859f-23b10aff22b1 + - b7ca1b08-1ea7-454f-87ce-93b92af25b23 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"4cf331b8-4000-42af-8500-7a192587cf6a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f13570fe-df4c-4e96-aacc-7b830247ac09\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"b89d1901-2622-441a-af86-6d238d0e1e7b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f9095ae8-5436-4356-824d-47d2dd3b6988\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 08:40:43 GMT etag: - - W/"4cf331b8-4000-42af-8500-7a192587cf6a" + - W/"b89d1901-2622-441a-af86-6d238d0e1e7b" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 814243b1-a7de-49bd-97ac-614ad660e04b + - 861f8faf-fe96-4fb9-aff2-bf18416205a5 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"91b941ea-ac12-46c8-a34f-03c0c8d257f5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f13570fe-df4c-4e96-aacc-7b830247ac09\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"91b941ea-ac12-46c8-a34f-03c0c8d257f5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"91b941ea-ac12-46c8-a34f-03c0c8d257f5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"b86842fe-dc84-40fe-8cae-5c17313dc51a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"f9095ae8-5436-4356-824d-47d2dd3b6988\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"b86842fe-dc84-40fe-8cae-5c17313dc51a\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"b86842fe-dc84-40fe-8cae-5c17313dc51a\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/553672dc-4223-400d-b5f3-bfb31d9be949?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bf342420-0a5d-4143-b881-5c3a7e80056b?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Wed, 19 Feb 2020 08:40:44 GMT expires: - '-1' pragma: @@ -320,7 +324,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ba5c361-5be4-4f3b-9157-802cbc8da289 + - 75673b3e-e23a-4125-8d61-1255ca8d7e68 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/553672dc-4223-400d-b5f3-bfb31d9be949?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bf342420-0a5d-4143-b881-5c3a7e80056b?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 08:40:48 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ded0469-033c-4053-bc22-ce5bcf4e13ff + - 62289908-4788-4941-8948-5a9ed318bc77 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"0acefc21-8c9e-40ef-8af6-a6c6f824cbdc\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f13570fe-df4c-4e96-aacc-7b830247ac09\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"0acefc21-8c9e-40ef-8af6-a6c6f824cbdc\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"0acefc21-8c9e-40ef-8af6-a6c6f824cbdc\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"13b2110f-2fc9-4b46-bf65-53562eb3a453\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f9095ae8-5436-4356-824d-47d2dd3b6988\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"13b2110f-2fc9-4b46-bf65-53562eb3a453\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"13b2110f-2fc9-4b46-bf65-53562eb3a453\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:40:48 GMT etag: - - W/"0acefc21-8c9e-40ef-8af6-a6c6f824cbdc" + - W/"13b2110f-2fc9-4b46-bf65-53562eb3a453" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 180046b3-3451-4fd4-90fe-d2205a55834a + - 6f8d5045-3b70-43de-a954-d79a322ba2e4 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.8826476Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A40%3A55.9712334Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3bd8a8e-5f65-4f0d-8eed-95b9662da997?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/514e8f0f-baf3-4e79-a98a-6cab34b9562b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:21 GMT + - Wed, 19 Feb 2020 08:40:56 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.8826476Z'" + - W/"datetime'2020-02-19T08%3A40%3A55.9712334Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3bd8a8e-5f65-4f0d-8eed-95b9662da997?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/514e8f0f-baf3-4e79-a98a-6cab34b9562b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3bd8a8e-5f65-4f0d-8eed-95b9662da997","name":"b3bd8a8e-5f65-4f0d-8eed-95b9662da997","status":"Succeeded","startTime":"2020-02-07T16:13:20.7179641Z","endTime":"2020-02-07T16:13:21.0616399Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/514e8f0f-baf3-4e79-a98a-6cab34b9562b","name":"514e8f0f-baf3-4e79-a98a-6cab34b9562b","status":"Succeeded","startTime":"2020-02-19T08:40:55.5156093Z","endTime":"2020-02-19T08:40:56.7516143Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Wed, 19 Feb 2020 08:41:27 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A21.0817869Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A40%3A56.6148361Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Wed, 19 Feb 2020 08:41:28 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.0817869Z'" + - W/"datetime'2020-02-19T08%3A40%3A56.6148361Z'" expires: - '-1' pragma: @@ -622,8 +627,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '140' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A55.8953089Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A41%3A35.4401236Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4f6073f-277a-48c5-ab17-e52e60948fca?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418e3934-54f5-4245-bf2a-8f1c7d11ce65?api-version=2019-10-01 cache-control: - no-cache content-length: - - '583' + - '588' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:56 GMT + - Wed, 19 Feb 2020 08:41:36 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.8953089Z'" + - W/"datetime'2020-02-19T08%3A41%3A35.4401236Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4f6073f-277a-48c5-ab17-e52e60948fca?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418e3934-54f5-4245-bf2a-8f1c7d11ce65?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4f6073f-277a-48c5-ab17-e52e60948fca","name":"d4f6073f-277a-48c5-ab17-e52e60948fca","status":"Succeeded","startTime":"2020-02-07T16:13:55.7923491Z","endTime":"2020-02-07T16:13:56.0579722Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418e3934-54f5-4245-bf2a-8f1c7d11ce65","name":"418e3934-54f5-4245-bf2a-8f1c7d11ce65","status":"Succeeded","startTime":"2020-02-19T08:41:35.0121714Z","endTime":"2020-02-19T08:41:36.4453321Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:27 GMT + - Wed, 19 Feb 2020 08:42:07 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.0574244Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"d64b7ada-10c9-2004-fea5-754c284005cc","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A41%3A36.3409661Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"6824c114-ad05-1580-d626-26ac2ebf9831","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '691' + - '696' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:28 GMT + - Wed, 19 Feb 2020 08:42:08 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.0574244Z'" + - W/"datetime'2020-02-19T08%3A41%3A36.3409661Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: @@ -805,37 +810,37 @@ interactions: Connection: - keep-alive Content-Length: - - '469' + - '474' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A32.1008157Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A42%3A16.4574623Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '977' + - '1014' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:32 GMT + - Wed, 19 Feb 2020 08:42:17 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A32.1008157Z'" + - W/"datetime'2020-02-19T08%3A42%3A16.4574623Z'" expires: - '-1' pragma: @@ -849,7 +854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -870,24 +875,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:02 GMT + - Wed, 19 Feb 2020 08:42:48 GMT expires: - '-1' pragma: @@ -924,24 +929,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:33 GMT + - Wed, 19 Feb 2020 08:43:18 GMT expires: - '-1' pragma: @@ -978,24 +983,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:04 GMT + - Wed, 19 Feb 2020 08:43:49 GMT expires: - '-1' pragma: @@ -1032,24 +1037,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:33 GMT + - Wed, 19 Feb 2020 08:44:20 GMT expires: - '-1' pragma: @@ -1086,24 +1091,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:04 GMT + - Wed, 19 Feb 2020 08:44:50 GMT expires: - '-1' pragma: @@ -1140,24 +1145,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:34 GMT + - Wed, 19 Feb 2020 08:45:20 GMT expires: - '-1' pragma: @@ -1194,24 +1199,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:05 GMT + - Wed, 19 Feb 2020 08:45:52 GMT expires: - '-1' pragma: @@ -1248,24 +1253,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:37 GMT + - Wed, 19 Feb 2020 08:46:22 GMT expires: - '-1' pragma: @@ -1302,24 +1307,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:08 GMT + - Wed, 19 Feb 2020 08:46:52 GMT expires: - '-1' pragma: @@ -1356,24 +1361,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:38 GMT + - Wed, 19 Feb 2020 08:47:23 GMT expires: - '-1' pragma: @@ -1410,24 +1415,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Creating","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:09 GMT + - Wed, 19 Feb 2020 08:47:53 GMT expires: - '-1' pragma: @@ -1464,24 +1469,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03a96007-5f72-42ab-9bbd-ab239c2599a3","name":"03a96007-5f72-42ab-9bbd-ab239c2599a3","status":"Succeeded","startTime":"2020-02-07T16:14:32.0133941Z","endTime":"2020-02-07T16:20:12.8243711Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Creating","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:39 GMT + - Wed, 19 Feb 2020 08:48:25 GMT expires: - '-1' pragma: @@ -1518,26 +1523,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A20%3A12.8028266Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"96ac380a-f873-84bf-845c-4a504757057b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_0d371192","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"96ac380a-f873-84bf-845c-4a504757057b","fileSystemId":"96ac380a-f873-84bf-845c-4a504757057b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/64a4788e-f2f3-4824-bb20-78aa750b212b","name":"64a4788e-f2f3-4824-bb20-78aa750b212b","status":"Succeeded","startTime":"2020-02-19T08:42:16.0184165Z","endTime":"2020-02-19T08:48:34.5542754Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1594' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:39 GMT - etag: - - W/"datetime'2020-02-07T16%3A20%3A12.8028266Z'" + - Wed, 19 Feb 2020 08:48:56 GMT expires: - '-1' pragma: @@ -1567,32 +1570,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A20%3A12.8028266Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"96ac380a-f873-84bf-845c-4a504757057b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_0d371192","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"96ac380a-f873-84bf-845c-4a504757057b","fileSystemId":"96ac380a-f873-84bf-845c-4a504757057b","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A48%3A34.3775892Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","fileSystemId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_07cbfeae","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1606' + - '1634' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:40 GMT + - Wed, 19 Feb 2020 08:48:56 GMT + etag: + - W/"datetime'2020-02-19T08%3A48%3A34.3775892Z'" expires: - '-1' pragma: @@ -1622,87 +1626,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 - response: - body: - string: '' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Feb 2020 16:20:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-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/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A48%3A34.3775892Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","fileSystemId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"fa11ab4b-402b-0a9d-cdbf-07a9ac8cd7ce","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_07cbfeae","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1646' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:13 GMT + - Wed, 19 Feb 2020 08:48:58 GMT expires: - '-1' pragma: @@ -1735,29 +1684,35 @@ interactions: - netappfiles volume delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 07 Feb 2020 16:21:44 GMT + - Wed, 19 Feb 2020 08:49:01 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1766,17 +1721,15 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1791,24 +1744,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:15 GMT + - Wed, 19 Feb 2020 08:49:33 GMT expires: - '-1' pragma: @@ -1844,24 +1797,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:45 GMT + - Wed, 19 Feb 2020 08:50:04 GMT expires: - '-1' pragma: @@ -1897,24 +1850,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:15 GMT + - Wed, 19 Feb 2020 08:50:34 GMT expires: - '-1' pragma: @@ -1950,24 +1903,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:45 GMT + - Wed, 19 Feb 2020 08:51:04 GMT expires: - '-1' pragma: @@ -2003,24 +1956,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:16 GMT + - Wed, 19 Feb 2020 08:51:34 GMT expires: - '-1' pragma: @@ -2056,24 +2009,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:47 GMT + - Wed, 19 Feb 2020 08:52:06 GMT expires: - '-1' pragma: @@ -2109,24 +2062,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:16 GMT + - Wed, 19 Feb 2020 08:52:36 GMT expires: - '-1' pragma: @@ -2162,24 +2115,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:47 GMT + - Wed, 19 Feb 2020 08:53:06 GMT expires: - '-1' pragma: @@ -2215,24 +2168,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:18 GMT + - Wed, 19 Feb 2020 08:53:37 GMT expires: - '-1' pragma: @@ -2268,24 +2221,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:48 GMT + - Wed, 19 Feb 2020 08:54:08 GMT expires: - '-1' pragma: @@ -2321,24 +2274,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:27:18 GMT + - Wed, 19 Feb 2020 08:54:38 GMT expires: - '-1' pragma: @@ -2374,24 +2327,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:27:49 GMT + - Wed, 19 Feb 2020 08:55:08 GMT expires: - '-1' pragma: @@ -2427,24 +2380,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Deleting","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Deleting","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:19 GMT + - Wed, 19 Feb 2020 08:55:39 GMT expires: - '-1' pragma: @@ -2480,24 +2433,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","name":"d0af24d1-b4ac-4ce5-ad82-374c07b54d8d","status":"Succeeded","startTime":"2020-02-07T16:20:43.5916228Z","endTime":"2020-02-07T16:28:22.8226014Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e81c00d6-b5a9-443e-a685-3382e88d7aa8","name":"e81c00d6-b5a9-443e-a685-3382e88d7aa8","status":"Succeeded","startTime":"2020-02-19T08:49:01.6922007Z","endTime":"2020-02-19T08:56:02.9709596Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:50 GMT + - Wed, 19 Feb 2020 08:56:10 GMT expires: - '-1' pragma: @@ -2533,12 +2486,12 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: string: '{"value":[]}' @@ -2552,7 +2505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:52 GMT + - Wed, 19 Feb 2020 08:56:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml index cf05d484740..e2d9e788825 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A39.0538786Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A11.9294844Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37154aa5-39a3-4756-bf78-f784d357f9be?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be000641-c1b4-4e96-bf23-016ab3715b4a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:11:39 GMT + - Thu, 20 Feb 2020 15:35:12 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.0538786Z'" + - W/"datetime'2020-02-20T15%3A35%3A11.9294844Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37154aa5-39a3-4756-bf78-f784d357f9be?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be000641-c1b4-4e96-bf23-016ab3715b4a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37154aa5-39a3-4756-bf78-f784d357f9be","name":"37154aa5-39a3-4756-bf78-f784d357f9be","status":"Succeeded","startTime":"2019-11-15T15:11:38.9366699Z","endTime":"2019-11-15T15:11:39.1466066Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be000641-c1b4-4e96-bf23-016ab3715b4a","name":"be000641-c1b4-4e96-bf23-016ab3715b4a","status":"Succeeded","startTime":"2020-02-20T15:35:11.5055337Z","endTime":"2020-02-20T15:35:12.7553271Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:10 GMT + - Thu, 20 Feb 2020 15:35:43 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A39.1429419Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.6461585Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:10 GMT + - Thu, 20 Feb 2020 15:35:43 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.1429419Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.6461585Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml index 7ca7e211f2c..13066ce9eae 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A37.8430181Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.1036493Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d076ded1-4d86-4563-8c64-0f977b8cf49e?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c01e3198-34e1-4e83-9340-e014c17d808c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:11:37 GMT + - Thu, 20 Feb 2020 15:35:11 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A37.8430181Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.1036493Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d076ded1-4d86-4563-8c64-0f977b8cf49e?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c01e3198-34e1-4e83-9340-e014c17d808c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d076ded1-4d86-4563-8c64-0f977b8cf49e","name":"d076ded1-4d86-4563-8c64-0f977b8cf49e","status":"Succeeded","startTime":"2019-11-15T15:11:37.7796716Z","endTime":"2019-11-15T15:11:37.9046919Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c01e3198-34e1-4e83-9340-e014c17d808c","name":"c01e3198-34e1-4e83-9340-e014c17d808c","status":"Succeeded","startTime":"2020-02-20T15:35:11.6689414Z","endTime":"2020-02-20T15:35:12.8667209Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:09 GMT + - Thu, 20 Feb 2020 15:35:42 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A37.9060629Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.7652717Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:09 GMT + - Thu, 20 Feb 2020 15:35:43 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A37.9060629Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.7652717Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml index 061c52b3047..be9dd3011e7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - -n --subscription -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:04 GMT + - Wed, 19 Feb 2020 08:40:38 GMT expires: - '-1' pragma: @@ -44,7 +44,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -67,7 +67,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -75,18 +75,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"0d8087ee-b4a4-4bda-8513-f86a26f958c3\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"15789880-acd1-4949-8649-a74289014659\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"fb597195-fee3-4f52-8c4f-6f1ac876ed4b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"e832a0da-7472-4baa-91fc-6ef87ab916c9\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0692920a-deb4-4e61-9c23-f4ffd6558d51?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e3c8f1f9-1b62-4789-a179-d0b4e6ef4881?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -94,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 08:40:45 GMT expires: - '-1' pragma: @@ -107,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d35accf-529d-4230-9f95-ae0f34847c79 + - 1e3d4cb9-ffef-4deb-9037-08a739a58784 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -127,10 +128,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0692920a-deb4-4e61-9c23-f4ffd6558d51?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e3c8f1f9-1b62-4789-a179-d0b4e6ef4881?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:14 GMT + - Wed, 19 Feb 2020 08:40:50 GMT expires: - '-1' pragma: @@ -159,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8cd6928c-629f-4fbe-a131-74420549d276 + - 991344d6-04b0-4584-96d2-3b38fab21c76 status: code: 200 message: OK @@ -177,21 +178,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15789880-acd1-4949-8649-a74289014659\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"e868859a-a4a3-4522-a95a-4dc2a0ec2601\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e832a0da-7472-4baa-91fc-6ef87ab916c9\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -200,9 +202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:14 GMT + - Wed, 19 Feb 2020 08:40:50 GMT etag: - - W/"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8" + - W/"e868859a-a4a3-4522-a95a-4dc2a0ec2601" expires: - '-1' pragma: @@ -219,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e8f304b-aa81-48a2-a51e-3b59ea9f976f + - e73d1658-aea9-484b-b25b-9751b17c7f4e status: code: 200 message: OK @@ -237,7 +239,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -245,15 +247,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15789880-acd1-4949-8649-a74289014659\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"e868859a-a4a3-4522-a95a-4dc2a0ec2601\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e832a0da-7472-4baa-91fc-6ef87ab916c9\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -262,9 +265,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 08:40:50 GMT etag: - - W/"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8" + - W/"e868859a-a4a3-4522-a95a-4dc2a0ec2601" expires: - '-1' pragma: @@ -281,7 +284,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eedb4c06-ab60-407a-af9c-d89794f84da4 + - f96e7405-fba6-4d52-9dd7-8b379d52f655 status: code: 200 message: OK @@ -309,7 +312,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -317,34 +320,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"38acd00e-6753-4fb5-9862-1f7bed0e85df\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"15789880-acd1-4949-8649-a74289014659\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"38acd00e-6753-4fb5-9862-1f7bed0e85df\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"38acd00e-6753-4fb5-9862-1f7bed0e85df\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"fa1124db-ec3d-4150-927c-8f5740dc40fe\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"e832a0da-7472-4baa-91fc-6ef87ab916c9\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"fa1124db-ec3d-4150-927c-8f5740dc40fe\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"fa1124db-ec3d-4150-927c-8f5740dc40fe\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5192f441-3a6b-4a0b-9e2a-8a3f9538bab7?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbbd97b4-6eaa-4991-84c9-ef26d2da95b0?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -352,7 +356,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:40:51 GMT expires: - '-1' pragma: @@ -369,9 +373,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a71b50e-fce2-4a18-9e5e-6b369b12fe8e + - 222289b3-f365-4e77-98a1-54c77d733fcb x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -389,10 +393,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5192f441-3a6b-4a0b-9e2a-8a3f9538bab7?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbbd97b4-6eaa-4991-84c9-ef26d2da95b0?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -404,7 +408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:19 GMT + - Wed, 19 Feb 2020 08:40:55 GMT expires: - '-1' pragma: @@ -421,7 +425,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8edb7f9e-f576-400b-9852-bb648fb32588 + - 88ef2cda-5a44-4de9-9d5c-ac3cc8832373 status: code: 200 message: OK @@ -439,37 +443,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"7a15e26d-9bfb-41f6-85d1-0b277945f4b1\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"15789880-acd1-4949-8649-a74289014659\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"7a15e26d-9bfb-41f6-85d1-0b277945f4b1\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"7a15e26d-9bfb-41f6-85d1-0b277945f4b1\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"b4889c2e-0b26-4ae3-a7c7-657610559db0\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e832a0da-7472-4baa-91fc-6ef87ab916c9\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"b4889c2e-0b26-4ae3-a7c7-657610559db0\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"b4889c2e-0b26-4ae3-a7c7-657610559db0\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -478,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:20 GMT + - Wed, 19 Feb 2020 08:40:55 GMT etag: - - W/"7a15e26d-9bfb-41f6-85d1-0b277945f4b1" + - W/"b4889c2e-0b26-4ae3-a7c7-657610559db0" expires: - '-1' pragma: @@ -497,12 +502,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d400d64a-d224-4291-9eea-11f3bec336bf + - c6211d3a-115d-4616-aee6-1a733459b14d status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -513,36 +518,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A24.1959788Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A41%3A03.4922626Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb2f0a2a-ee7c-408b-8d93-5211f56ff67d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6885107b-0fe5-4540-9bb2-dde99d072fdf?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:23 GMT + - Wed, 19 Feb 2020 08:41:04 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A24.1959788Z'" + - W/"datetime'2020-02-19T08%3A41%3A03.4922626Z'" expires: - '-1' pragma: @@ -556,7 +561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -576,24 +581,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb2f0a2a-ee7c-408b-8d93-5211f56ff67d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6885107b-0fe5-4540-9bb2-dde99d072fdf?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb2f0a2a-ee7c-408b-8d93-5211f56ff67d","name":"bb2f0a2a-ee7c-408b-8d93-5211f56ff67d","status":"Succeeded","startTime":"2020-02-07T16:13:24.001041Z","endTime":"2020-02-07T16:13:24.4072973Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6885107b-0fe5-4540-9bb2-dde99d072fdf","name":"6885107b-0fe5-4540-9bb2-dde99d072fdf","status":"Succeeded","startTime":"2020-02-19T08:41:02.8709805Z","endTime":"2020-02-19T08:41:04.9677493Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:55 GMT + - Wed, 19 Feb 2020 08:41:35 GMT expires: - '-1' pragma: @@ -629,26 +634,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A24.3961201Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A41%3A04.7804669Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:55 GMT + - Wed, 19 Feb 2020 08:41:35 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A24.3961201Z'" + - W/"datetime'2020-02-19T08%3A41%3A04.7804669Z'" expires: - '-1' pragma: @@ -671,7 +676,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -683,36 +688,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A59.0585402Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A42%3A00.1992656Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7ad1326-f4ca-4ef1-8c42-537aa6a0bbed?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57242f7f-582c-46f5-a43c-4ba5059a9d19?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:59 GMT + - Wed, 19 Feb 2020 08:42:00 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A59.0585402Z'" + - W/"datetime'2020-02-19T08%3A42%3A00.1992656Z'" expires: - '-1' pragma: @@ -726,7 +731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -746,24 +751,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7ad1326-f4ca-4ef1-8c42-537aa6a0bbed?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57242f7f-582c-46f5-a43c-4ba5059a9d19?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7ad1326-f4ca-4ef1-8c42-537aa6a0bbed","name":"e7ad1326-f4ca-4ef1-8c42-537aa6a0bbed","status":"Succeeded","startTime":"2020-02-07T16:13:58.9663448Z","endTime":"2020-02-07T16:13:59.2163395Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57242f7f-582c-46f5-a43c-4ba5059a9d19","name":"57242f7f-582c-46f5-a43c-4ba5059a9d19","status":"Succeeded","startTime":"2020-02-19T08:41:59.6981731Z","endTime":"2020-02-19T08:42:01.2994713Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:30 GMT + - Wed, 19 Feb 2020 08:42:32 GMT expires: - '-1' pragma: @@ -799,26 +804,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A59.2146501Z''\"","location":"westus2","properties":{"poolId":"3c9226c8-4a02-21ae-0e9d-98afab807df9","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A42%3A01.1931944Z''\"","location":"westus2stage","properties":{"poolId":"c1fa30e9-9b25-4700-9b0a-a4ebb0a4eb08","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:30 GMT + - Wed, 19 Feb 2020 08:42:33 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A59.2146501Z'" + - W/"datetime'2020-02-19T08%3A42%3A01.1931944Z'" expires: - '-1' pragma: @@ -841,7 +846,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: '{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: Accept: @@ -853,37 +858,37 @@ interactions: Connection: - keep-alive Content-Length: - - '344' + - '349' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A34.1442559Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A42%3A40.2707186Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 cache-control: - no-cache content-length: - - '859' + - '896' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:34 GMT + - Wed, 19 Feb 2020 08:42:40 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A34.1442559Z'" + - W/"datetime'2020-02-19T08%3A42%3A40.2707186Z'" expires: - '-1' pragma: @@ -897,7 +902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' x-powered-by: - ASP.NET status: @@ -918,24 +923,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:05 GMT + - Wed, 19 Feb 2020 08:43:12 GMT expires: - '-1' pragma: @@ -972,24 +977,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:36 GMT + - Wed, 19 Feb 2020 08:43:43 GMT expires: - '-1' pragma: @@ -1026,24 +1031,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:06 GMT + - Wed, 19 Feb 2020 08:44:13 GMT expires: - '-1' pragma: @@ -1080,24 +1085,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:36 GMT + - Wed, 19 Feb 2020 08:44:44 GMT expires: - '-1' pragma: @@ -1134,24 +1139,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:07 GMT + - Wed, 19 Feb 2020 08:45:15 GMT expires: - '-1' pragma: @@ -1188,24 +1193,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:37 GMT + - Wed, 19 Feb 2020 08:45:46 GMT expires: - '-1' pragma: @@ -1242,24 +1247,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:07 GMT + - Wed, 19 Feb 2020 08:46:17 GMT expires: - '-1' pragma: @@ -1296,24 +1301,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:39 GMT + - Wed, 19 Feb 2020 08:46:55 GMT expires: - '-1' pragma: @@ -1350,24 +1355,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:10 GMT + - Wed, 19 Feb 2020 08:47:25 GMT expires: - '-1' pragma: @@ -1404,24 +1409,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:41 GMT + - Wed, 19 Feb 2020 08:47:56 GMT expires: - '-1' pragma: @@ -1458,24 +1463,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:11 GMT + - Wed, 19 Feb 2020 08:48:27 GMT expires: - '-1' pragma: @@ -1512,24 +1517,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:41 GMT + - Wed, 19 Feb 2020 08:48:57 GMT expires: - '-1' pragma: @@ -1566,24 +1571,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:12 GMT + - Wed, 19 Feb 2020 08:49:28 GMT expires: - '-1' pragma: @@ -1620,24 +1625,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:43 GMT + - Wed, 19 Feb 2020 08:49:58 GMT expires: - '-1' pragma: @@ -1674,24 +1679,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:15 GMT + - Wed, 19 Feb 2020 08:50:28 GMT expires: - '-1' pragma: @@ -1728,24 +1733,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:45 GMT + - Wed, 19 Feb 2020 08:51:00 GMT expires: - '-1' pragma: @@ -1782,24 +1787,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:16 GMT + - Wed, 19 Feb 2020 08:51:30 GMT expires: - '-1' pragma: @@ -1836,24 +1841,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:47 GMT + - Wed, 19 Feb 2020 08:52:01 GMT expires: - '-1' pragma: @@ -1890,24 +1895,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:18 GMT + - Wed, 19 Feb 2020 08:52:32 GMT expires: - '-1' pragma: @@ -1944,24 +1949,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:48 GMT + - Wed, 19 Feb 2020 08:53:02 GMT expires: - '-1' pragma: @@ -1998,24 +2003,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:19 GMT + - Wed, 19 Feb 2020 08:53:33 GMT expires: - '-1' pragma: @@ -2052,24 +2057,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:49 GMT + - Wed, 19 Feb 2020 08:54:04 GMT expires: - '-1' pragma: @@ -2106,24 +2111,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Creating","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Creating","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:19 GMT + - Wed, 19 Feb 2020 08:54:34 GMT expires: - '-1' pragma: @@ -2160,24 +2165,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74971214-2dd0-47aa-8f70-0cbed72faa37","name":"74971214-2dd0-47aa-8f70-0cbed72faa37","status":"Succeeded","startTime":"2020-02-07T16:14:34.0368911Z","endTime":"2020-02-07T16:26:42.4646399Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/039178e3-8c2a-4309-9fb2-5399056455c2","name":"039178e3-8c2a-4309-9fb2-5399056455c2","status":"Succeeded","startTime":"2020-02-19T08:42:39.7563487Z","endTime":"2020-02-19T08:54:48.1488902Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:50 GMT + - Wed, 19 Feb 2020 08:55:05 GMT expires: - '-1' pragma: @@ -2214,26 +2219,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A26%3A42.4664062Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"e683bf54-ef11-ed13-c7d8-31862631cb46","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_548e7097","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e683bf54-ef11-ed13-c7d8-31862631cb46","fileSystemId":"e683bf54-ef11-ed13-c7d8-31862631cb46","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A54%3A47.9647049Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"8652fcbc-ced6-2530-4d45-f64fbf06467a","fileSystemId":"8652fcbc-ced6-2530-4d45-f64fbf06467a","startIp":"10.0.0.15","endIp":"10.0.0.15","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.15"}],"provisioningState":"Succeeded","fileSystemId":"8652fcbc-ced6-2530-4d45-f64fbf06467a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_8930eacc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1502' + - '1542' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:50 GMT + - Wed, 19 Feb 2020 08:55:06 GMT etag: - - W/"datetime'2020-02-07T16%3A26%3A42.4664062Z'" + - W/"datetime'2020-02-19T08%3A54%3A47.9647049Z'" expires: - '-1' pragma: @@ -2271,12 +2276,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: string: '' @@ -2284,17 +2289,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:26:53 GMT + - Wed, 19 Feb 2020 08:55:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2326,395 +2331,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:27: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/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:28: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:28:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:29: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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:29:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:30:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8","name":"9b557f08-2ddc-4c84-8fb5-212776a087e8","status":"Deleting","startTime":"2020-02-19T08:55:10.8111121Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:30:58 GMT + - Wed, 19 Feb 2020 08:55:42 GMT expires: - '-1' pragma: @@ -2750,24 +2384,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8","name":"9b557f08-2ddc-4c84-8fb5-212776a087e8","status":"Deleting","startTime":"2020-02-19T08:55:10.8111121Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:29 GMT + - Wed, 19 Feb 2020 08:56:12 GMT expires: - '-1' pragma: @@ -2803,24 +2437,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Deleting","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8","name":"9b557f08-2ddc-4c84-8fb5-212776a087e8","status":"Deleting","startTime":"2020-02-19T08:55:10.8111121Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:59 GMT + - Wed, 19 Feb 2020 08:56:43 GMT expires: - '-1' pragma: @@ -2856,24 +2490,24 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","name":"0eb5e640-9697-4469-a1cd-2fafc6ee9b7f","status":"Succeeded","startTime":"2020-02-07T16:26:53.5049167Z","endTime":"2020-02-07T16:32:11.3169656Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9b557f08-2ddc-4c84-8fb5-212776a087e8","name":"9b557f08-2ddc-4c84-8fb5-212776a087e8","status":"Succeeded","startTime":"2020-02-19T08:55:10.8111121Z","endTime":"2020-02-19T08:57:04.8322897Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:32:30 GMT + - Wed, 19 Feb 2020 08:57:33 GMT expires: - '-1' pragma: @@ -2911,7 +2545,7 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -2926,11 +2560,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:32:35 GMT + - Wed, 19 Feb 2020 08:57:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2938,7 +2572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2956,10 +2590,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -2969,11 +2603,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:32:51 GMT + - Wed, 19 Feb 2020 08:57:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2997,10 +2631,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -3010,11 +2644,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:07 GMT + - Wed, 19 Feb 2020 08:58:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3038,10 +2672,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -3051,11 +2685,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:22 GMT + - Wed, 19 Feb 2020 08:58:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3079,10 +2713,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -3092,11 +2726,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:37 GMT + - Wed, 19 Feb 2020 08:58:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3120,10 +2754,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -3133,11 +2767,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:53 GMT + - Wed, 19 Feb 2020 08:58:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3161,10 +2795,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyREZaWFc0M09WNEhKVTJBNDdRLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRERXUDNJNFRMT0I2VFBHRE5ILVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: string: '' @@ -3174,7 +2808,7 @@ interactions: content-length: - '0' date: - - Fri, 07 Feb 2020 16:34:09 GMT + - Wed, 19 Feb 2020 08:59:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml index 332a8060582..2445148e95b 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"36f3d223-3d39-4b2c-85a8-0ec2b40ebc66\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e1c780fb-d7a0-4a79-ab3b-698dd529ed7d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"65361167-5d9a-4e70-a912-d6ef7a09dfa8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"2ed64060-1814-4522-a0fa-928495fdd2ba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfb7dd0e-7476-4d5c-bdfe-6f47e0994194?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/90925e23-6c74-431f-aa30-091846bbdd12?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:05 GMT + - Wed, 19 Feb 2020 11:24:00 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6ab3300-7e8e-401f-b459-40d4b7c2fe32 + - c535d8ea-25c0-430f-8dde-0f898e73fd3d x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfb7dd0e-7476-4d5c-bdfe-6f47e0994194?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/90925e23-6c74-431f-aa30-091846bbdd12?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 11:24:04 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7d6d5f4-cc8a-466a-ae18-0dd2cec2ca48 + - 7bc03018-c44b-42dc-ac77-a1a16118a046 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"97a45b24-b35d-4d89-9ff3-bbc74e061839\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e1c780fb-d7a0-4a79-ab3b-698dd529ed7d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"61c4f05c-c7a1-4652-9ba6-9764f455c468\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed64060-1814-4522-a0fa-928495fdd2ba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 11:24:04 GMT etag: - - W/"97a45b24-b35d-4d89-9ff3-bbc74e061839" + - W/"61c4f05c-c7a1-4652-9ba6-9764f455c468" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93234bb6-330f-450a-81fb-0b08a00c76c1 + - 9756bbcb-8c2f-4ad0-a61d-33c73ede9ccb status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"97a45b24-b35d-4d89-9ff3-bbc74e061839\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e1c780fb-d7a0-4a79-ab3b-698dd529ed7d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"61c4f05c-c7a1-4652-9ba6-9764f455c468\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed64060-1814-4522-a0fa-928495fdd2ba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 11:24:06 GMT etag: - - W/"97a45b24-b35d-4d89-9ff3-bbc74e061839" + - W/"61c4f05c-c7a1-4652-9ba6-9764f455c468" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eefc6775-8365-4f5e-8c8d-242de1c0fe25 + - 9373c7ce-a200-4e2d-a8c8-3a31fef7479f status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"ee567c9a-3286-42f4-b0e3-21199eeba50f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e1c780fb-d7a0-4a79-ab3b-698dd529ed7d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"ee567c9a-3286-42f4-b0e3-21199eeba50f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"ee567c9a-3286-42f4-b0e3-21199eeba50f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"abe31e57-f003-4497-9697-3a5b0e0d6b98\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"2ed64060-1814-4522-a0fa-928495fdd2ba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"abe31e57-f003-4497-9697-3a5b0e0d6b98\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"abe31e57-f003-4497-9697-3a5b0e0d6b98\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84732f44-430a-45ee-95c2-507f7aa9d58c?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8d2acc89-a637-48be-b33c-6ef30a9e84aa?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 11:24:06 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c78ce362-dcbc-407f-8a0c-b9d9b543f5fd + - 72d08ef5-a382-4294-baf2-0a28036acfcd x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84732f44-430a-45ee-95c2-507f7aa9d58c?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8d2acc89-a637-48be-b33c-6ef30a9e84aa?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 11:24:10 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f18acd58-f9bf-4c45-9306-683371a7dffe + - 7f44bd0b-25c6-4f33-9709-e62effd3d8e6 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"57354cb1-d8b8-43ab-afda-8052454f6f3e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e1c780fb-d7a0-4a79-ab3b-698dd529ed7d\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"57354cb1-d8b8-43ab-afda-8052454f6f3e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"57354cb1-d8b8-43ab-afda-8052454f6f3e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"8b80ba42-8f31-40ce-8e80-5cb67a31cc84\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"2ed64060-1814-4522-a0fa-928495fdd2ba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"8b80ba42-8f31-40ce-8e80-5cb67a31cc84\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"8b80ba42-8f31-40ce-8e80-5cb67a31cc84\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 11:24:10 GMT etag: - - W/"57354cb1-d8b8-43ab-afda-8052454f6f3e" + - W/"8b80ba42-8f31-40ce-8e80-5cb67a31cc84" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f88d0de8-420c-4fc2-a536-7d4a231fecb0 + - d50d9d57-4644-4c35-859a-5c4f8b4ceccd status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A19.9009557Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A17.4868104Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2df10817-03d3-47d5-b7ba-21105213e8ea?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4df9c989-d3f6-473d-9620-1c6795817af0?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:20 GMT + - Wed, 19 Feb 2020 11:24:18 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A19.9009557Z'" + - W/"datetime'2020-02-19T11%3A24%3A17.4868104Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2df10817-03d3-47d5-b7ba-21105213e8ea?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4df9c989-d3f6-473d-9620-1c6795817af0?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2df10817-03d3-47d5-b7ba-21105213e8ea","name":"2df10817-03d3-47d5-b7ba-21105213e8ea","status":"Succeeded","startTime":"2020-02-07T16:13:19.764436Z","endTime":"2020-02-07T16:13:20.108151Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4df9c989-d3f6-473d-9620-1c6795817af0","name":"4df9c989-d3f6-473d-9620-1c6795817af0","status":"Succeeded","startTime":"2020-02-19T11:24:17.0574564Z","endTime":"2020-02-19T11:24:18.523388Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '574' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Wed, 19 Feb 2020 11:24:49 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.1000959Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A18.4146854Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Wed, 19 Feb 2020 11:24:49 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.1000959Z'" + - W/"datetime'2020-02-19T11%3A24%3A18.4146854Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.0003834Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A57.299203Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98610167-6863-4f4c-b3f5-a08d3ad9e109?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7dadc46-a7f0-4b4b-af00-1e6a29aeb0dd?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '546' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:57 GMT + - Wed, 19 Feb 2020 11:24:57 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.0003834Z'" + - W/"datetime'2020-02-19T11%3A24%3A57.299203Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98610167-6863-4f4c-b3f5-a08d3ad9e109?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7dadc46-a7f0-4b4b-af00-1e6a29aeb0dd?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/98610167-6863-4f4c-b3f5-a08d3ad9e109","name":"98610167-6863-4f4c-b3f5-a08d3ad9e109","status":"Succeeded","startTime":"2020-02-07T16:13:55.8954902Z","endTime":"2020-02-07T16:13:56.2738558Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7dadc46-a7f0-4b4b-af00-1e6a29aeb0dd","name":"f7dadc46-a7f0-4b4b-af00-1e6a29aeb0dd","status":"Succeeded","startTime":"2020-02-19T11:24:56.6049625Z","endTime":"2020-02-19T11:24:58.3925576Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:27 GMT + - Wed, 19 Feb 2020 11:25:28 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.2565661Z''\"","location":"westus2","properties":{"poolId":"6b779b68-e686-0e5a-3e15-131b92786fca","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A58.2811278Z''\"","location":"westus2stage","properties":{"poolId":"0b78d41d-a1a2-e48a-5cb5-185b7ede5d8b","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:28 GMT + - Wed, 19 Feb 2020 11:25:29 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.2565661Z'" + - W/"datetime'2020-02-19T11%3A24%3A58.2811278Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '400' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A33.3867208Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A25%3A38.8202038Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '947' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:34 GMT + - Wed, 19 Feb 2020 11:25:39 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A33.3867208Z'" + - W/"datetime'2020-02-19T11%3A25%3A38.8202038Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -869,24 +874,78 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:26:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:04 GMT + - Wed, 19 Feb 2020 11:26:41 GMT expires: - '-1' pragma: @@ -923,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:35 GMT + - Wed, 19 Feb 2020 11:27:12 GMT expires: - '-1' pragma: @@ -977,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:05 GMT + - Wed, 19 Feb 2020 11:27:42 GMT expires: - '-1' pragma: @@ -1031,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:36 GMT + - Wed, 19 Feb 2020 11:28:13 GMT expires: - '-1' pragma: @@ -1085,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:06 GMT + - Wed, 19 Feb 2020 11:28:43 GMT expires: - '-1' pragma: @@ -1139,24 +1198,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:37 GMT + - Wed, 19 Feb 2020 11:29:13 GMT expires: - '-1' pragma: @@ -1193,24 +1252,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:07 GMT + - Wed, 19 Feb 2020 11:29:43 GMT expires: - '-1' pragma: @@ -1247,24 +1306,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:40 GMT + - Wed, 19 Feb 2020 11:30:15 GMT expires: - '-1' pragma: @@ -1301,24 +1360,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:10 GMT + - Wed, 19 Feb 2020 11:30:45 GMT expires: - '-1' pragma: @@ -1355,24 +1414,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:41 GMT + - Wed, 19 Feb 2020 11:31:16 GMT expires: - '-1' pragma: @@ -1409,24 +1468,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:12 GMT + - Wed, 19 Feb 2020 11:31:46 GMT expires: - '-1' pragma: @@ -1463,24 +1522,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:42 GMT + - Wed, 19 Feb 2020 11:32:16 GMT expires: - '-1' pragma: @@ -1517,24 +1576,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:12 GMT + - Wed, 19 Feb 2020 11:32:48 GMT expires: - '-1' pragma: @@ -1571,24 +1630,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:44 GMT + - Wed, 19 Feb 2020 11:33:18 GMT expires: - '-1' pragma: @@ -1625,24 +1684,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:15 GMT + - Wed, 19 Feb 2020 11:33:48 GMT expires: - '-1' pragma: @@ -1679,24 +1738,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:45 GMT + - Wed, 19 Feb 2020 11:34:19 GMT expires: - '-1' pragma: @@ -1733,24 +1792,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:15 GMT + - Wed, 19 Feb 2020 11:34:49 GMT expires: - '-1' pragma: @@ -1787,24 +1846,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:46 GMT + - Wed, 19 Feb 2020 11:35:20 GMT expires: - '-1' pragma: @@ -1841,24 +1900,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:17 GMT + - Wed, 19 Feb 2020 11:35:50 GMT expires: - '-1' pragma: @@ -1895,24 +1954,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:24:47 GMT + - Wed, 19 Feb 2020 11:36:41 GMT expires: - '-1' pragma: @@ -1949,24 +2008,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:18 GMT + - Wed, 19 Feb 2020 11:37:11 GMT expires: - '-1' pragma: @@ -2003,24 +2062,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:25:48 GMT + - Wed, 19 Feb 2020 11:37:42 GMT expires: - '-1' pragma: @@ -2057,24 +2116,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:18 GMT + - Wed, 19 Feb 2020 11:38:32 GMT expires: - '-1' pragma: @@ -2111,24 +2170,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:49 GMT + - Wed, 19 Feb 2020 11:39:02 GMT expires: - '-1' pragma: @@ -2165,24 +2224,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:27:20 GMT + - Wed, 19 Feb 2020 11:39:32 GMT expires: - '-1' pragma: @@ -2219,24 +2278,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:27:50 GMT + - Wed, 19 Feb 2020 11:40:04 GMT expires: - '-1' pragma: @@ -2273,24 +2332,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:21 GMT + - Wed, 19 Feb 2020 11:40:35 GMT expires: - '-1' pragma: @@ -2327,24 +2386,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:52 GMT + - Wed, 19 Feb 2020 11:41:05 GMT expires: - '-1' pragma: @@ -2381,24 +2440,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:29:21 GMT + - Wed, 19 Feb 2020 11:41:35 GMT expires: - '-1' pragma: @@ -2435,24 +2494,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:29:52 GMT + - Wed, 19 Feb 2020 11:42:06 GMT expires: - '-1' pragma: @@ -2489,24 +2548,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:30:23 GMT + - Wed, 19 Feb 2020 11:42:37 GMT expires: - '-1' pragma: @@ -2543,24 +2602,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:30:52 GMT + - Wed, 19 Feb 2020 11:43:07 GMT expires: - '-1' pragma: @@ -2597,24 +2656,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:24 GMT + - Wed, 19 Feb 2020 11:43:37 GMT expires: - '-1' pragma: @@ -2651,24 +2710,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:54 GMT + - Wed, 19 Feb 2020 11:44:08 GMT expires: - '-1' pragma: @@ -2705,24 +2764,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:32:24 GMT + - Wed, 19 Feb 2020 11:44:39 GMT expires: - '-1' pragma: @@ -2759,24 +2818,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:32:55 GMT + - Wed, 19 Feb 2020 11:45:10 GMT expires: - '-1' pragma: @@ -2813,24 +2872,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:33:26 GMT + - Wed, 19 Feb 2020 11:45:40 GMT expires: - '-1' pragma: @@ -2867,24 +2926,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:33:56 GMT + - Wed, 19 Feb 2020 11:46:11 GMT expires: - '-1' pragma: @@ -2921,24 +2980,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:34:27 GMT + - Wed, 19 Feb 2020 11:46:41 GMT expires: - '-1' pragma: @@ -2975,24 +3034,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:34:58 GMT + - Wed, 19 Feb 2020 11:47:12 GMT expires: - '-1' pragma: @@ -3029,24 +3088,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Creating","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Creating","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:35:28 GMT + - Wed, 19 Feb 2020 11:47:42 GMT expires: - '-1' pragma: @@ -3083,24 +3142,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/466439e5-5c8e-4b1b-aec7-5fb3902fd065","name":"466439e5-5c8e-4b1b-aec7-5fb3902fd065","status":"Succeeded","startTime":"2020-02-07T16:14:33.2618013Z","endTime":"2020-02-07T16:35:44.4844478Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/310d4664-54b0-4db5-bcd5-0f8a16e91882","name":"310d4664-54b0-4db5-bcd5-0f8a16e91882","status":"Succeeded","startTime":"2020-02-19T11:25:38.2855571Z","endTime":"2020-02-19T11:47:55.1118977Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:35:58 GMT + - Wed, 19 Feb 2020 11:48:13 GMT expires: - '-1' pragma: @@ -3137,26 +3196,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A35%3A44.4902981Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A47%3A54.9344087Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1593' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:35:59 GMT + - Wed, 19 Feb 2020 11:48:14 GMT etag: - - W/"datetime'2020-02-07T16%3A35%3A44.4902981Z'" + - W/"datetime'2020-02-19T11%3A47%3A54.9344087Z'" expires: - '-1' pragma: @@ -3193,28 +3252,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A35%3A44.4902981Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A47%3A54.9344087Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1593' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:01 GMT + - Wed, 19 Feb 2020 11:48:17 GMT etag: - - W/"datetime'2020-02-07T16%3A35%3A44.4902981Z'" + - W/"datetime'2020-02-19T11%3A47%3A54.9344087Z'" expires: - '-1' pragma: @@ -3259,28 +3318,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A03.7888916Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A21.3781259Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1668' + - '1708' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:06 GMT + - Wed, 19 Feb 2020 11:48:25 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A03.7888916Z'" + - W/"datetime'2020-02-19T11%3A48%3A21.3781259Z'" expires: - '-1' pragma: @@ -3298,7 +3357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -3319,28 +3378,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A06.808017Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A25.5129904Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1667' + - '1708' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:07 GMT + - Wed, 19 Feb 2020 11:48:27 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A06.808017Z'" + - W/"datetime'2020-02-19T11%3A48%3A25.5129904Z'" expires: - '-1' pragma: @@ -3387,28 +3446,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A09.7230743Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A30.9010253Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1836' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:11 GMT + - Wed, 19 Feb 2020 11:48:34 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A09.7230743Z'" + - W/"datetime'2020-02-19T11%3A48%3A30.9010253Z'" expires: - '-1' pragma: @@ -3426,7 +3485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1197' x-powered-by: - ASP.NET status: @@ -3446,28 +3505,28 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A12.0557166Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A34.2801836Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1836' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:14 GMT + - Wed, 19 Feb 2020 11:48:36 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A12.0557166Z'" + - W/"datetime'2020-02-19T11%3A48%3A34.2801836Z'" expires: - '-1' pragma: @@ -3503,28 +3562,28 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A12.0557166Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A34.2801836Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24"},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1836' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:18 GMT + - Wed, 19 Feb 2020 11:48:38 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A12.0557166Z'" + - W/"datetime'2020-02-19T11%3A48%3A34.2801836Z'" expires: - '-1' pragma: @@ -3547,17 +3606,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", - "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "76690b68-4af9-cb2a-ddd6-1a320a2aafc7", - "fileSystemId": "76690b68-4af9-cb2a-ddd6-1a320a2aafc7", "startIp": "10.0.0.6", - "endIp": "10.0.0.6", "gateway": "", "netmask": "", "subnet": "", "ipAddress": - "10.0.0.6"}]}}''' + "mountTargets": [{"provisioningState": "Succeeded", "mountTargetId": "f48cca35-84a2-16a7-f00e-2ec515b6a07a", + "fileSystemId": "f48cca35-84a2-16a7-f00e-2ec515b6a07a", "startIp": "10.0.0.14", + "endIp": "10.0.0.14", "gateway": "", "netmask": "", "subnet": "", "ipAddress": + "10.0.0.14"}]}}''' headers: Accept: - application/json @@ -3568,34 +3627,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1017' + - '1025' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A36%3A20.7048102Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_1bc9e2ba","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","fileSystemId":"76690b68-4af9-cb2a-ddd6-1a320a2aafc7","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A48%3A41.5509799Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"f48cca35-84a2-16a7-f00e-2ec515b6a07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_aa9aa421","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1668' + - '1708' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:22 GMT + - Wed, 19 Feb 2020 11:48:44 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A20.7048102Z'" + - W/"datetime'2020-02-19T11%3A48%3A41.5509799Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml index 1b25d57cec1..2483ce163b0 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy_non_default.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"258d500c-38dc-40b3-8c7e-927a1877d4a9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"3e1aa53e-11ed-4b4d-936a-d4ef04043c21\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"245b5281-fb12-45af-bb57-8f174d2152bb\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"66c505bf-2f8f-460f-8604-358059ad65f8\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b4dc8d40-305c-440f-95c6-5530aaad8479?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c6fb9418-b26f-4b8d-bb5b-02d66a0d9be5?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:04 GMT + - Wed, 19 Feb 2020 11:23:58 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99ffe0d7-5de4-4d95-a96f-042375c8eac0 + - 071b8dd7-e588-4f43-8cbe-09ac333a2bab x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b4dc8d40-305c-440f-95c6-5530aaad8479?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c6fb9418-b26f-4b8d-bb5b-02d66a0d9be5?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:08 GMT + - Wed, 19 Feb 2020 11:24:03 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d58ced40-6c90-4eb0-b532-76db7e7f3c8f + - 67190782-5d3b-4037-bb40-8a461ada1f35 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a5fe56c0-1d06-46db-8866-c8776bd8d452\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3e1aa53e-11ed-4b4d-936a-d4ef04043c21\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"6ffe32cc-8690-4e05-aa5f-23f42048b8a2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"66c505bf-2f8f-460f-8604-358059ad65f8\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 11:24:03 GMT etag: - - W/"a5fe56c0-1d06-46db-8866-c8776bd8d452" + - W/"6ffe32cc-8690-4e05-aa5f-23f42048b8a2" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e498ca66-82e9-415d-8ce9-73f262a73be1 + - 58d0ba3c-ac7f-4802-b982-18ee2e45dfc1 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"a5fe56c0-1d06-46db-8866-c8776bd8d452\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3e1aa53e-11ed-4b4d-936a-d4ef04043c21\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"6ffe32cc-8690-4e05-aa5f-23f42048b8a2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"66c505bf-2f8f-460f-8604-358059ad65f8\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 11:24:03 GMT etag: - - W/"a5fe56c0-1d06-46db-8866-c8776bd8d452" + - W/"6ffe32cc-8690-4e05-aa5f-23f42048b8a2" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4775e686-2acb-4f98-98a3-824f7c808e54 + - ecbdf339-017d-48d4-8ff8-c70bd7e49056 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"0cbbe11d-4198-4313-aef8-ff09c26eabd4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"3e1aa53e-11ed-4b4d-936a-d4ef04043c21\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"0cbbe11d-4198-4313-aef8-ff09c26eabd4\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"0cbbe11d-4198-4313-aef8-ff09c26eabd4\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"1802ca50-29bf-454d-98a5-22df4d21c31c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"66c505bf-2f8f-460f-8604-358059ad65f8\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"1802ca50-29bf-454d-98a5-22df4d21c31c\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"1802ca50-29bf-454d-98a5-22df4d21c31c\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/387ba5a7-4f67-4a54-b8f4-8a99a5f5f7d5?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bc15a523-effb-4be1-bd45-734fa32e36c0?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 11:24:04 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40d18d46-8888-4a9b-8820-ec26f9a1ff95 + - 738219fe-cbb9-4d9c-99cf-9eac5b9707fa x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/387ba5a7-4f67-4a54-b8f4-8a99a5f5f7d5?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bc15a523-effb-4be1-bd45-734fa32e36c0?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 11:24:08 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76334951-9250-40f5-9b6e-0a2e831d8c8f + - 3600ef6d-3f5a-461f-8a88-cdc77b7f783f status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"8d2e9f52-9a0d-4b73-b0e7-118ce0a25a9a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3e1aa53e-11ed-4b4d-936a-d4ef04043c21\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"8d2e9f52-9a0d-4b73-b0e7-118ce0a25a9a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"8d2e9f52-9a0d-4b73-b0e7-118ce0a25a9a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"5b953f6a-fda5-4c98-9be3-680ef61dafee\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"66c505bf-2f8f-460f-8604-358059ad65f8\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"5b953f6a-fda5-4c98-9be3-680ef61dafee\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"5b953f6a-fda5-4c98-9be3-680ef61dafee\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 11:24:09 GMT etag: - - W/"8d2e9f52-9a0d-4b73-b0e7-118ce0a25a9a" + - W/"5b953f6a-fda5-4c98-9be3-680ef61dafee" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2d9f472-c486-4701-92af-43110f37a765 + - 5f96126c-4437-43f4-b761-9db8a6662a94 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.4153178Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A17.2676044Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd8b347-d1bc-4bd9-b273-bb0dc74fdd37?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2cc0b2e-fd09-438c-b6db-b13815072e49?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:21 GMT + - Wed, 19 Feb 2020 11:24:18 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4153178Z'" + - W/"datetime'2020-02-19T11%3A24%3A17.2676044Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd8b347-d1bc-4bd9-b273-bb0dc74fdd37?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2cc0b2e-fd09-438c-b6db-b13815072e49?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cd8b347-d1bc-4bd9-b273-bb0dc74fdd37","name":"7cd8b347-d1bc-4bd9-b273-bb0dc74fdd37","status":"Succeeded","startTime":"2020-02-07T16:13:20.3407643Z","endTime":"2020-02-07T16:13:20.4501131Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a2cc0b2e-fd09-438c-b6db-b13815072e49","name":"a2cc0b2e-fd09-438c-b6db-b13815072e49","status":"Succeeded","startTime":"2020-02-19T11:24:16.6702958Z","endTime":"2020-02-19T11:24:18.0983395Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:51 GMT + - Wed, 19 Feb 2020 11:24:49 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.4733595Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A17.9832777Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:52 GMT + - Wed, 19 Feb 2020 11:24:49 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4733595Z'" + - W/"datetime'2020-02-19T11%3A24%3A17.9832777Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 8796093022208, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 8796093022208, "serviceLevel": "Standard"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '95' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.5807959Z''\"","location":"westus2","properties":{"serviceLevel":"Standard","size":8796093022208,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A57.4213184Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","size":8796093022208,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fafe7b66-df15-433d-b489-86a1bc97881c?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc52450e-a543-4362-b77e-20de09e180f3?api-version=2019-10-01 cache-control: - no-cache content-length: - - '543' + - '548' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:56 GMT + - Wed, 19 Feb 2020 11:24:58 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.5807959Z'" + - W/"datetime'2020-02-19T11%3A24%3A57.4213184Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fafe7b66-df15-433d-b489-86a1bc97881c?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc52450e-a543-4362-b77e-20de09e180f3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fafe7b66-df15-433d-b489-86a1bc97881c","name":"fafe7b66-df15-433d-b489-86a1bc97881c","status":"Succeeded","startTime":"2020-02-07T16:13:56.4523791Z","endTime":"2020-02-07T16:13:56.7687639Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc52450e-a543-4362-b77e-20de09e180f3","name":"dc52450e-a543-4362-b77e-20de09e180f3","status":"Succeeded","startTime":"2020-02-19T11:24:56.8621078Z","endTime":"2020-02-19T11:24:58.5375368Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:27 GMT + - Wed, 19 Feb 2020 11:25:29 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.768929Z''\"","location":"westus2","properties":{"poolId":"62fc6ebb-3c46-c6b3-2b05-b8fe079244c0","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A58.4192578Z''\"","location":"westus2stage","properties":{"poolId":"b64e9380-384d-eba6-b80b-8bb2dc6377f3","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":8796093022208,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '656' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:27 GMT + - Wed, 19 Feb 2020 11:25:30 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.768929Z'" + - W/"datetime'2020-02-19T11%3A24%3A58.4192578Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Standard", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '396' + - '401' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A32.9814351Z''\"","location":"westus2","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A25%3A39.1385025Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 cache-control: - no-cache content-length: - - '911' + - '948' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:33 GMT + - Wed, 19 Feb 2020 11:25:40 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A32.9814351Z'" + - W/"datetime'2020-02-19T11%3A25%3A39.1385025Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -869,24 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:04 GMT + - Wed, 19 Feb 2020 11:26:11 GMT expires: - '-1' pragma: @@ -923,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:35 GMT + - Wed, 19 Feb 2020 11:26:41 GMT expires: - '-1' pragma: @@ -977,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:06 GMT + - Wed, 19 Feb 2020 11:27:12 GMT expires: - '-1' pragma: @@ -1031,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:35 GMT + - Wed, 19 Feb 2020 11:27:42 GMT expires: - '-1' pragma: @@ -1085,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:06 GMT + - Wed, 19 Feb 2020 11:28:13 GMT expires: - '-1' pragma: @@ -1139,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:37 GMT + - Wed, 19 Feb 2020 11:28:43 GMT expires: - '-1' pragma: @@ -1193,24 +1198,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:08 GMT + - Wed, 19 Feb 2020 11:29:14 GMT expires: - '-1' pragma: @@ -1247,24 +1252,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:39 GMT + - Wed, 19 Feb 2020 11:29:44 GMT expires: - '-1' pragma: @@ -1301,24 +1306,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:10 GMT + - Wed, 19 Feb 2020 11:30:15 GMT expires: - '-1' pragma: @@ -1355,24 +1360,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:41 GMT + - Wed, 19 Feb 2020 11:30:45 GMT expires: - '-1' pragma: @@ -1409,24 +1414,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:12 GMT + - Wed, 19 Feb 2020 11:31:15 GMT expires: - '-1' pragma: @@ -1463,24 +1468,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:42 GMT + - Wed, 19 Feb 2020 11:31:46 GMT expires: - '-1' pragma: @@ -1517,24 +1522,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:13 GMT + - Wed, 19 Feb 2020 11:32:17 GMT expires: - '-1' pragma: @@ -1571,24 +1576,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:44 GMT + - Wed, 19 Feb 2020 11:32:47 GMT expires: - '-1' pragma: @@ -1625,24 +1630,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:15 GMT + - Wed, 19 Feb 2020 11:33:18 GMT expires: - '-1' pragma: @@ -1679,24 +1684,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:22:44 GMT + - Wed, 19 Feb 2020 11:33:48 GMT expires: - '-1' pragma: @@ -1733,24 +1738,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Creating","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:15 GMT + - Wed, 19 Feb 2020 11:34:20 GMT expires: - '-1' pragma: @@ -1787,24 +1792,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e06be973-7dbc-4b20-921a-68f9f2193991","name":"e06be973-7dbc-4b20-921a-68f9f2193991","status":"Succeeded","startTime":"2020-02-07T16:14:32.8883671Z","endTime":"2020-02-07T16:23:17.3908793Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Creating","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:45 GMT + - Wed, 19 Feb 2020 11:34:50 GMT expires: - '-1' pragma: @@ -1841,26 +1846,80 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A23%3A17.3898612Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_010e5a24","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"09d9bb30-a148-9a2d-fb29-e52308af962a","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f10f84bf-84cc-47af-a904-88eb916c02cc","name":"f10f84bf-84cc-47af-a904-88eb916c02cc","status":"Succeeded","startTime":"2020-02-19T11:25:38.7174051Z","endTime":"2020-02-19T11:35:05.5544183Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1554' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:45 GMT + - Wed, 19 Feb 2020 11:35:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A35%3A05.3699979Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a04e2095-47d6-e6f4-0972-a461be665780","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2bbd52b4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1594' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:35:21 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A17.3898612Z'" + - W/"datetime'2020-02-19T11%3A35%3A05.3699979Z'" expires: - '-1' pragma: @@ -1897,28 +1956,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A23%3A17.3898612Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_010e5a24","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"09d9bb30-a148-9a2d-fb29-e52308af962a","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A35%3A05.3699979Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a04e2095-47d6-e6f4-0972-a461be665780","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2bbd52b4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1554' + - '1594' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:48 GMT + - Wed, 19 Feb 2020 11:35:24 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A17.3898612Z'" + - W/"datetime'2020-02-19T11%3A35%3A05.3699979Z'" expires: - '-1' pragma: @@ -1963,28 +2022,28 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A23%3A50.2810355Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_010e5a24","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"09d9bb30-a148-9a2d-fb29-e52308af962a","fileSystemId":"09d9bb30-a148-9a2d-fb29-e52308af962a","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A35%3A27.8020716Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a04e2095-47d6-e6f4-0972-a461be665780","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"a04e2095-47d6-e6f4-0972-a461be665780","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24"},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_2bbd52b4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1669' + - '1709' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:51 GMT + - Wed, 19 Feb 2020 11:35:31 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A50.2810355Z'" + - W/"datetime'2020-02-19T11%3A35%3A27.8020716Z'" expires: - '-1' pragma: @@ -2002,7 +2061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml index 3b1cd39af5e..13fcedb6b2e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.6025971Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.9672216Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0da2c8ef-ad85-4ff2-acac-ed32dc28be41?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3690423b-8b98-4ed3-a360-0cde9e4326ad?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:08:38 GMT + - Thu, 20 Feb 2020 15:22:32 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6025971Z'" + - W/"datetime'2020-02-20T15%3A22%3A32.9672216Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0da2c8ef-ad85-4ff2-acac-ed32dc28be41?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3690423b-8b98-4ed3-a360-0cde9e4326ad?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0da2c8ef-ad85-4ff2-acac-ed32dc28be41","name":"0da2c8ef-ad85-4ff2-acac-ed32dc28be41","status":"Succeeded","startTime":"2019-11-15T15:08:37.5129339Z","endTime":"2019-11-15T15:08:37.684812Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3690423b-8b98-4ed3-a360-0cde9e4326ad","name":"3690423b-8b98-4ed3-a360-0cde9e4326ad","status":"Succeeded","startTime":"2020-02-20T15:22:32.3806534Z","endTime":"2020-02-20T15:22:33.7799207Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 20 Feb 2020 15:23:04 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.6886586Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 20 Feb 2020 15:23:04 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.6886586Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:10 GMT + - Thu, 20 Feb 2020 15:23:06 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" expires: - '-1' pragma: @@ -239,28 +239,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.6886586Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.6678766Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:11 GMT + - Thu, 20 Feb 2020 15:23:07 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.6678766Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml index c4d39c92fe5..6276a90bcc8 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A39.2610254Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.1506933Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c35e17dc-702b-4028-8cf7-8f0e9d1787e9?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2c14d26-a796-48d9-af3c-a547eab3be39?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:11:39 GMT + - Thu, 20 Feb 2020 15:35:12 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.2610254Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.1506933Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c35e17dc-702b-4028-8cf7-8f0e9d1787e9?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2c14d26-a796-48d9-af3c-a547eab3be39?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c35e17dc-702b-4028-8cf7-8f0e9d1787e9","name":"c35e17dc-702b-4028-8cf7-8f0e9d1787e9","status":"Succeeded","startTime":"2019-11-15T15:11:39.2024514Z","endTime":"2019-11-15T15:11:39.3339485Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e2c14d26-a796-48d9-af3c-a547eab3be39","name":"e2c14d26-a796-48d9-af3c-a547eab3be39","status":"Succeeded","startTime":"2020-02-20T15:35:11.6968748Z","endTime":"2020-02-20T15:35:12.9740838Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:10 GMT + - Thu, 20 Feb 2020 15:35:43 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A11%3A39.3290742Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A12.8253278Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:10 GMT + - Thu, 20 Feb 2020 15:35:43 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.3290742Z'" + - W/"datetime'2020-02-20T15%3A35%3A12.8253278Z'" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -181,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A14.7632695Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A47.4969005Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ceb145c-8edf-461a-a300-d1dc677c8c0d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:15 GMT + - Thu, 20 Feb 2020 15:35:47 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.7632695Z'" + - W/"datetime'2020-02-20T15%3A35%3A47.4969005Z'" expires: - '-1' pragma: @@ -244,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ceb145c-8edf-461a-a300-d1dc677c8c0d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ceb145c-8edf-461a-a300-d1dc677c8c0d","name":"2ceb145c-8edf-461a-a300-d1dc677c8c0d","status":"Succeeded","startTime":"2019-11-15T15:12:14.6921478Z","endTime":"2019-11-15T15:12:14.9577847Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c2ca803e-2ce8-48b1-b97c-180f5cafd7a9","name":"c2ca803e-2ce8-48b1-b97c-180f5cafd7a9","status":"Succeeded","startTime":"2020-02-20T15:35:47.0776059Z","endTime":"2020-02-20T15:35:48.5004365Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:47 GMT + - Thu, 20 Feb 2020 15:36:19 GMT expires: - '-1' pragma: @@ -297,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A14.9514033Z''\"","location":"westus2","properties":{"poolId":"9c99406d-a787-5d55-2d27-2eaf6cb3325d","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '654' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:47 GMT + - Thu, 20 Feb 2020 15:36:19 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" expires: - '-1' pragma: @@ -352,28 +352,28 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A14.9514033Z''\"","location":"westus2","properties":{"poolId":"9c99406d-a787-5d55-2d27-2eaf6cb3325d","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '654' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:49 GMT + - Thu, 20 Feb 2020 15:36:21 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" expires: - '-1' pragma: @@ -409,28 +409,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A14.9514033Z''\"","location":"westus2","properties":{"poolId":"9c99406d-a787-5d55-2d27-2eaf6cb3325d","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A35%3A48.394745Z''\"","location":"westus2stage","properties":{"poolId":"f2ed0578-f25d-6780-4a2a-707dfad52db5","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '654' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:51 GMT + - Thu, 20 Feb 2020 15:36:23 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-20T15%3A35%3A48.394745Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml index 038f27352fc..926e0bc2715 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"e3c012b9-7358-4ea6-881b-fa91eb2d068d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"966eb09f-e1be-4775-beb1-0694f46c88f0\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"7eb7c3b9-e40c-4e64-96aa-4e9390344018\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"3b5f66ea-9583-440c-8b88-ea82fc5ed3b3\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49a3dc0c-7eca-426d-b356-3a0463a84ebf?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9a81c25-b632-48dd-9b93-b4f6322a9197?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:04 GMT + - Wed, 19 Feb 2020 08:27:12 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64982165-cdb3-44b3-858e-aeaf926e634d + - 61c5cb70-b94e-482c-b48f-d2a0910a102a x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49a3dc0c-7eca-426d-b356-3a0463a84ebf?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9a81c25-b632-48dd-9b93-b4f6322a9197?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 08:27:17 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b6ea6bcc-d2dd-4ebf-aebd-2ae947a25db4 + - 0b8067b8-ed29-42bf-b6b0-d9de6331c534 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"b86ac01e-60db-4e4f-a091-700999bdc552\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"966eb09f-e1be-4775-beb1-0694f46c88f0\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"dfab9bcc-5bdc-42a2-8406-ef3ccb97875e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3b5f66ea-9583-440c-8b88-ea82fc5ed3b3\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 08:27:17 GMT etag: - - W/"b86ac01e-60db-4e4f-a091-700999bdc552" + - W/"dfab9bcc-5bdc-42a2-8406-ef3ccb97875e" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aa23a98-2871-4479-982c-e9c5b05a2da8 + - c7c4ab1f-4264-4ac0-8b0a-6ccf35e7b840 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"b86ac01e-60db-4e4f-a091-700999bdc552\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"966eb09f-e1be-4775-beb1-0694f46c88f0\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"dfab9bcc-5bdc-42a2-8406-ef3ccb97875e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3b5f66ea-9583-440c-8b88-ea82fc5ed3b3\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 08:27:17 GMT etag: - - W/"b86ac01e-60db-4e4f-a091-700999bdc552" + - W/"dfab9bcc-5bdc-42a2-8406-ef3ccb97875e" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a730dd6-2d54-4646-9810-752f9e9b6e34 + - 17d4d93a-ab7b-439a-b698-3f80f6f757e2 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"f47cdd03-d0a9-4107-9527-c87d41d8dd3e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"966eb09f-e1be-4775-beb1-0694f46c88f0\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"f47cdd03-d0a9-4107-9527-c87d41d8dd3e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"f47cdd03-d0a9-4107-9527-c87d41d8dd3e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"acb5bc13-7c06-47df-9825-b6048276fe39\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"3b5f66ea-9583-440c-8b88-ea82fc5ed3b3\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"acb5bc13-7c06-47df-9825-b6048276fe39\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"acb5bc13-7c06-47df-9825-b6048276fe39\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83c46cd0-828f-4324-a944-974d4b8a0160?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2742ad48-bd47-4e71-a77e-058cb37708a7?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 08:27:18 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 143dd5ec-3533-4bdb-b716-a83839d25b0c + - 4bc47b5f-e1b4-4195-8d62-705b848d6ed6 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83c46cd0-828f-4324-a944-974d4b8a0160?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2742ad48-bd47-4e71-a77e-058cb37708a7?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 08:27:23 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12125218-8139-4aed-bf29-4a00e29a72ad + - a7617e22-a591-43b7-bcd7-c46c424e06a4 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d33a171e-d2ea-4668-b7b1-7dfbbdd974f7\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"966eb09f-e1be-4775-beb1-0694f46c88f0\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d33a171e-d2ea-4668-b7b1-7dfbbdd974f7\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d33a171e-d2ea-4668-b7b1-7dfbbdd974f7\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"d99c2341-3ca0-48c4-a2fc-e76a3c506549\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3b5f66ea-9583-440c-8b88-ea82fc5ed3b3\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"d99c2341-3ca0-48c4-a2fc-e76a3c506549\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"d99c2341-3ca0-48c4-a2fc-e76a3c506549\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Wed, 19 Feb 2020 08:27:23 GMT etag: - - W/"d33a171e-d2ea-4668-b7b1-7dfbbdd974f7" + - W/"d99c2341-3ca0-48c4-a2fc-e76a3c506549" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e0ef351-19e1-4122-9828-29792ba35911 + - b3cb33bb-6029-4180-8ad2-14d15231b792 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.4623513Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A27%3A30.8503711Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fdae8f7f-43b6-4d21-bdff-bfacd8ed6f8a?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d3297840-b638-447b-9658-e77f9c6ee91f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:21 GMT + - Wed, 19 Feb 2020 08:27:31 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4623513Z'" + - W/"datetime'2020-02-19T08%3A27%3A30.8503711Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fdae8f7f-43b6-4d21-bdff-bfacd8ed6f8a?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d3297840-b638-447b-9658-e77f9c6ee91f?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fdae8f7f-43b6-4d21-bdff-bfacd8ed6f8a","name":"fdae8f7f-43b6-4d21-bdff-bfacd8ed6f8a","status":"Succeeded","startTime":"2020-02-07T16:13:20.2938724Z","endTime":"2020-02-07T16:13:20.4970109Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d3297840-b638-447b-9658-e77f9c6ee91f","name":"d3297840-b638-447b-9658-e77f9c6ee91f","status":"Succeeded","startTime":"2020-02-19T08:27:30.3901443Z","endTime":"2020-02-19T08:27:31.7693855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:51 GMT + - Wed, 19 Feb 2020 08:28:03 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A20.5193906Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A27%3A31.6571256Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:51 GMT + - Wed, 19 Feb 2020 08:28:03 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.5193906Z'" + - W/"datetime'2020-02-19T08%3A27%3A31.6571256Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A55.50003Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A28%3A11.8077729Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02e12182-150d-4d27-97bb-f9fc059fe2a0?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fe7c61f7-2323-4d4d-baf3-c8e0f3dc5bbe?api-version=2019-10-01 cache-control: - no-cache content-length: - - '540' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:56 GMT + - Wed, 19 Feb 2020 08:28:13 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.50003Z'" + - W/"datetime'2020-02-19T08%3A28%3A11.8077729Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02e12182-150d-4d27-97bb-f9fc059fe2a0?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fe7c61f7-2323-4d4d-baf3-c8e0f3dc5bbe?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02e12182-150d-4d27-97bb-f9fc059fe2a0","name":"02e12182-150d-4d27-97bb-f9fc059fe2a0","status":"Succeeded","startTime":"2020-02-07T16:13:55.4111021Z","endTime":"2020-02-07T16:13:55.7704906Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fe7c61f7-2323-4d4d-baf3-c8e0f3dc5bbe","name":"fe7c61f7-2323-4d4d-baf3-c8e0f3dc5bbe","status":"Succeeded","startTime":"2020-02-19T08:28:10.8272591Z","endTime":"2020-02-19T08:28:13.9768046Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:26 GMT + - Wed, 19 Feb 2020 08:28:45 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A55.7702202Z''\"","location":"westus2","properties":{"poolId":"70471f93-9a8b-cdec-44a3-9e445b52b341","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A28%3A13.8486905Z''\"","location":"westus2stage","properties":{"poolId":"c1ef29db-3fd0-a7b9-6283-c9d2bf1d7e8e","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:26 GMT + - Wed, 19 Feb 2020 08:28:45 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.7702202Z'" + - W/"datetime'2020-02-19T08%3A28%3A13.8486905Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '394' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A30.9560095Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A28%3A53.3938603Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 cache-control: - no-cache content-length: - - '904' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:31 GMT + - Wed, 19 Feb 2020 08:28:54 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A30.9560095Z'" + - W/"datetime'2020-02-19T08%3A28%3A53.3938603Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -869,24 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Creating","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:01 GMT + - Wed, 19 Feb 2020 08:29:25 GMT expires: - '-1' pragma: @@ -923,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Creating","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:32 GMT + - Wed, 19 Feb 2020 08:29:56 GMT expires: - '-1' pragma: @@ -977,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Creating","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:02 GMT + - Wed, 19 Feb 2020 08:30:26 GMT expires: - '-1' pragma: @@ -1031,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Creating","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:34 GMT + - Wed, 19 Feb 2020 08:30:56 GMT expires: - '-1' pragma: @@ -1085,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Creating","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:05 GMT + - Wed, 19 Feb 2020 08:31:27 GMT expires: - '-1' pragma: @@ -1139,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","name":"cd16e5f7-a35a-4fcf-b125-0fde1fd5599d","status":"Succeeded","startTime":"2020-02-07T16:14:30.8007683Z","endTime":"2020-02-07T16:17:20.9972013Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:35 GMT + - Wed, 19 Feb 2020 08:31:59 GMT expires: - '-1' pragma: @@ -1193,26 +1198,350 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A17%3A20.9917959Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_3430b070","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1547' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:35 GMT + - Wed, 19 Feb 2020 08:32:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:32:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:33:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:34:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Creating","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:34:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/30a682dd-a85a-4560-934e-234fbb77a295","name":"30a682dd-a85a-4560-934e-234fbb77a295","status":"Succeeded","startTime":"2020-02-19T08:28:52.9339899Z","endTime":"2020-02-19T08:34:50.2937411Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:35:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A34%3A50.064101Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","startIp":"10.5.0.5","endIp":"10.5.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.5"}],"provisioningState":"Succeeded","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_0081f0a5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1583' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 08:35:03 GMT etag: - - W/"datetime'2020-02-07T16%3A17%3A20.9917959Z'" + - W/"datetime'2020-02-19T08%3A34%3A50.064101Z'" expires: - '-1' pragma: @@ -1235,7 +1564,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "44da9d2f-f9a3-4f52-3c67-c656771bdfc5"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "499a52aa-a7f3-a421-fa5d-4e8502e872df"}}' headers: Accept: - application/json @@ -1246,38 +1575,38 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '100' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","name":"cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","name":"cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/981f18b7-8f92-4374-9bd0-e4fde667b9a1?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/096b06d8-e4f7-4d00-a9a8-6bb5d45e5187?api-version=2019-10-01 cache-control: - no-cache content-length: - - '662' + - '667' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:41 GMT + - Wed, 19 Feb 2020 08:35:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/981f18b7-8f92-4374-9bd0-e4fde667b9a1?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/096b06d8-e4f7-4d00-a9a8-6bb5d45e5187?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1289,7 +1618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -1309,24 +1638,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/981f18b7-8f92-4374-9bd0-e4fde667b9a1?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/096b06d8-e4f7-4d00-a9a8-6bb5d45e5187?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/981f18b7-8f92-4374-9bd0-e4fde667b9a1","name":"981f18b7-8f92-4374-9bd0-e4fde667b9a1","status":"Succeeded","startTime":"2020-02-07T16:17:40.9933871Z","endTime":"2020-02-07T16:17:43.5664144Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/096b06d8-e4f7-4d00-a9a8-6bb5d45e5187","name":"096b06d8-e4f7-4d00-a9a8-6bb5d45e5187","status":"Succeeded","startTime":"2020-02-19T08:35:11.5053815Z","endTime":"2020-02-19T08:35:14.6051975Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '683' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:13 GMT + - Wed, 19 Feb 2020 08:35:44 GMT expires: - '-1' pragma: @@ -1362,24 +1691,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c351268d-a4b0-50d3-e6fc-33308c248564","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","name":"cli-sn-000005","created":"2020-02-07T16:17:41Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"9e32e47b-3cb5-ccd6-4575-b5546630e641","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","name":"cli-sn-000005","created":"2020-02-19T08:35:12Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:14 GMT + - Wed, 19 Feb 2020 08:35:45 GMT expires: - '-1' pragma: @@ -1415,26 +1744,26 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c351268d-a4b0-50d3-e6fc-33308c248564","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","name":"cli-sn-000005","created":"2020-02-07T16:17:41Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"9e32e47b-3cb5-ccd6-4575-b5546630e641","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","name":"cli-sn-000005","created":"2020-02-19T08:35:12Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:18 GMT + - Wed, 19 Feb 2020 08:35:46 GMT expires: - '-1' pragma: @@ -1470,26 +1799,26 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c351268d-a4b0-50d3-e6fc-33308c248564","fileSystemId":"44da9d2f-f9a3-4f52-3c67-c656771bdfc5","name":"cli-sn-000005","created":"2020-02-07T16:17:41Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"9e32e47b-3cb5-ccd6-4575-b5546630e641","fileSystemId":"499a52aa-a7f3-a421-fa5d-4e8502e872df","name":"cli-sn-000005","created":"2020-02-19T08:35:12Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:20 GMT + - Wed, 19 Feb 2020 08:35:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml index 6a9adda46a5..29ee0825628 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"cead2fb9-aa92-4026-94ad-89360a8ef538\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5662649f-4b54-4d59-b74a-4159cc83ba27\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"467cd311-f195-4cee-be18-835f8f3ad4f6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"055bfc7e-f889-438f-965f-6ea4ff92a63c\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d4ac05fb-8487-454a-b0fb-5639ae8b25c9?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e12bd7d1-d602-4d73-806b-49cd32e718d1?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:52 GMT + - Wed, 19 Feb 2020 11:23:59 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45d89639-c4e5-4420-bbfd-992109be0a02 + - f80557f5-aa12-4da4-950e-87b205e8dd43 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d4ac05fb-8487-454a-b0fb-5639ae8b25c9?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e12bd7d1-d602-4d73-806b-49cd32e718d1?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:56 GMT + - Wed, 19 Feb 2020 11:24:03 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9c6c3d6-40c5-430e-a9a2-76718cbc028e + - 65764be5-0cd9-4595-86a3-e11b553c9d65 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"36d86eab-25ba-44f3-b02d-adb2df9fc2fe\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5662649f-4b54-4d59-b74a-4159cc83ba27\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"39409569-be58-4c8c-a039-f7f3c3e7d0eb\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"055bfc7e-f889-438f-965f-6ea4ff92a63c\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:57 GMT + - Wed, 19 Feb 2020 11:24:03 GMT etag: - - W/"36d86eab-25ba-44f3-b02d-adb2df9fc2fe" + - W/"39409569-be58-4c8c-a039-f7f3c3e7d0eb" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29bb6474-c16d-4767-bcf4-aad5225f7aa1 + - 2041845e-cd97-487d-82b1-64ac6865c7e2 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"36d86eab-25ba-44f3-b02d-adb2df9fc2fe\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5662649f-4b54-4d59-b74a-4159cc83ba27\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"39409569-be58-4c8c-a039-f7f3c3e7d0eb\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"055bfc7e-f889-438f-965f-6ea4ff92a63c\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:58 GMT + - Wed, 19 Feb 2020 11:24:04 GMT etag: - - W/"36d86eab-25ba-44f3-b02d-adb2df9fc2fe" + - W/"39409569-be58-4c8c-a039-f7f3c3e7d0eb" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 749af4e4-7787-4173-98e4-215bf973eed7 + - 1fd6fe54-a79a-41ea-b488-dd25e00702f5 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"30f10728-0d8a-44bb-be8b-e58768073d7c\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5662649f-4b54-4d59-b74a-4159cc83ba27\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"30f10728-0d8a-44bb-be8b-e58768073d7c\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"30f10728-0d8a-44bb-be8b-e58768073d7c\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"e0932ca2-17a9-450d-b66c-0977fbb7a80c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"055bfc7e-f889-438f-965f-6ea4ff92a63c\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"e0932ca2-17a9-450d-b66c-0977fbb7a80c\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"e0932ca2-17a9-450d-b66c-0977fbb7a80c\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f9494aad-72d8-4350-a73c-3109fe682cf0?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/604b6e9c-84d8-4437-b6bc-1db0104383e0?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:58 GMT + - Wed, 19 Feb 2020 11:24:05 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a5f4664-f502-48bd-85c0-30c4182e6ae3 + - 5c955f92-9f7b-4b68-863d-2b2b5d537a15 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f9494aad-72d8-4350-a73c-3109fe682cf0?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/604b6e9c-84d8-4437-b6bc-1db0104383e0?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:02 GMT + - Wed, 19 Feb 2020 11:24:09 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c91b1ee-b6f4-4b6e-b094-2ff08d7091a4 + - b8106f44-4ac0-4ef8-aa39-a3a1a4704a29 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"6d5ad4a3-2147-45b7-881c-f80dc9777281\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5662649f-4b54-4d59-b74a-4159cc83ba27\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"6d5ad4a3-2147-45b7-881c-f80dc9777281\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"6d5ad4a3-2147-45b7-881c-f80dc9777281\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"169a5f06-3cfa-4c1a-875b-d92463616c81\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"055bfc7e-f889-438f-965f-6ea4ff92a63c\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"169a5f06-3cfa-4c1a-875b-d92463616c81\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"169a5f06-3cfa-4c1a-875b-d92463616c81\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:03 GMT + - Wed, 19 Feb 2020 11:24:09 GMT etag: - - W/"6d5ad4a3-2147-45b7-881c-f80dc9777281" + - W/"169a5f06-3cfa-4c1a-875b-d92463616c81" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 838ba5c8-171c-413e-97fe-8025a59751df + - d41d62e8-caff-439c-ae10-b64594019474 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A44%3A08.7905717Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A17.5138361Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3805ae27-a1fb-47e9-b53d-4cbda54d7a5b?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4eadb9f3-5c8b-424f-83d8-f5496022c8ac?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:08 GMT + - Wed, 19 Feb 2020 11:24:17 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A08.7905717Z'" + - W/"datetime'2020-02-19T11%3A24%3A17.5138361Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3805ae27-a1fb-47e9-b53d-4cbda54d7a5b?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4eadb9f3-5c8b-424f-83d8-f5496022c8ac?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3805ae27-a1fb-47e9-b53d-4cbda54d7a5b","name":"3805ae27-a1fb-47e9-b53d-4cbda54d7a5b","status":"Succeeded","startTime":"2020-02-07T16:44:08.6970217Z","endTime":"2020-02-07T16:44:09.009486Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4eadb9f3-5c8b-424f-83d8-f5496022c8ac","name":"4eadb9f3-5c8b-424f-83d8-f5496022c8ac","status":"Succeeded","startTime":"2020-02-19T11:24:16.963705Z","endTime":"2020-02-19T11:24:18.4296278Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:40 GMT + - Wed, 19 Feb 2020 11:24:49 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A44%3A08.9907125Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A18.3205959Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:40 GMT + - Wed, 19 Feb 2020 11:24:49 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A08.9907125Z'" + - W/"datetime'2020-02-19T11%3A24%3A18.3205959Z'" expires: - '-1' pragma: @@ -622,8 +627,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag2": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag2": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A44%3A48.9378531Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A57.2101193Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/157cfdc0-64ef-40ac-b06f-0330228dbfdc?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d9e9e69-7091-4b41-bd10-6cc22c933554?api-version=2019-10-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:44:49 GMT + - Wed, 19 Feb 2020 11:24:57 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A48.9378531Z'" + - W/"datetime'2020-02-19T11%3A24%3A57.2101193Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/157cfdc0-64ef-40ac-b06f-0330228dbfdc?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d9e9e69-7091-4b41-bd10-6cc22c933554?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/157cfdc0-64ef-40ac-b06f-0330228dbfdc","name":"157cfdc0-64ef-40ac-b06f-0330228dbfdc","status":"Succeeded","startTime":"2020-02-07T16:44:48.8760861Z","endTime":"2020-02-07T16:44:49.266702Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5d9e9e69-7091-4b41-bd10-6cc22c933554","name":"5d9e9e69-7091-4b41-bd10-6cc22c933554","status":"Succeeded","startTime":"2020-02-19T11:24:56.8007576Z","endTime":"2020-02-19T11:24:58.360588Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:45:20 GMT + - Wed, 19 Feb 2020 11:25:29 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A44%3A49.2770915Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"poolId":"df1219a1-43ce-6e10-5bb8-a1cb98dae046","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A58.2130633Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"poolId":"31f89687-6e73-cc40-c4a3-b760c012c997","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:45:21 GMT + - Wed, 19 Feb 2020 11:25:30 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A49.2770915Z'" + - W/"datetime'2020-02-19T11%3A24%3A58.2130633Z'" expires: - '-1' pragma: @@ -792,11 +797,11 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag2": "Value1"}, "properties": {"creationToken": - "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": - true, "cifs": false, "nfsv3": false, "nfsv41": true, "allowedClients": "0.0.0.0/0"}]}, - "protocolTypes": ["NFSv4.1"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' + body: 'b''{"location": "westus2stage", "tags": {"Tag2": "Value1"}, "properties": + {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 1, "unixReadOnly": false, + "unixReadWrite": true, "cifs": false, "nfsv3": false, "nfsv41": true, "allowedClients": + "0.0.0.0/0"}]}, "protocolTypes": ["NFSv4.1"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: - application/json @@ -807,37 +812,37 @@ interactions: Connection: - keep-alive Content-Length: - - '624' + - '629' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A45%3A26.1810907Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A25%3A36.6771896Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1118' + - '1155' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:45:27 GMT + - Wed, 19 Feb 2020 11:25:36 GMT etag: - - W/"datetime'2020-02-07T16%3A45%3A26.1810907Z'" + - W/"datetime'2020-02-19T11%3A25%3A36.6771896Z'" expires: - '-1' pragma: @@ -851,7 +856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -872,294 +877,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:45:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:46:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:46:58 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:47:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:47:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --protocol-types --tags - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:48:29 GMT + - Wed, 19 Feb 2020 11:26:07 GMT expires: - '-1' pragma: @@ -1196,24 +931,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:49:00 GMT + - Wed, 19 Feb 2020 11:26:38 GMT expires: - '-1' pragma: @@ -1250,24 +985,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:49:30 GMT + - Wed, 19 Feb 2020 11:27:09 GMT expires: - '-1' pragma: @@ -1304,24 +1039,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:00 GMT + - Wed, 19 Feb 2020 11:27:39 GMT expires: - '-1' pragma: @@ -1358,24 +1093,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:30 GMT + - Wed, 19 Feb 2020 11:28:09 GMT expires: - '-1' pragma: @@ -1412,24 +1147,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Creating","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Creating","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:02 GMT + - Wed, 19 Feb 2020 11:28:41 GMT expires: - '-1' pragma: @@ -1466,24 +1201,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d548ba23-afc9-4b68-a30e-996054b32479","name":"d548ba23-afc9-4b68-a30e-996054b32479","status":"Succeeded","startTime":"2020-02-07T16:45:26.0684997Z","endTime":"2020-02-07T16:51:16.5355766Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bf0f91e8-2249-405b-bcc7-d4d01df57d5a","name":"bf0f91e8-2249-405b-bcc7-d4d01df57d5a","status":"Succeeded","startTime":"2020-02-19T11:25:36.3543455Z","endTime":"2020-02-19T11:29:01.803409Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '652' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:32 GMT + - Wed, 19 Feb 2020 11:29:11 GMT expires: - '-1' pragma: @@ -1520,26 +1255,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A51%3A16.5329119Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":307200,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_c5a23af1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e86afaf5-78a6-87c4-6f51-7110dba87516","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A29%3A01.6275403Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ea227f75-a096-09b7-5eb7-e318df589443","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_602ac546","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1616' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:33 GMT + - Wed, 19 Feb 2020 11:29:12 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-19T11%3A29%3A01.6275403Z'" expires: - '-1' pragma: @@ -1575,28 +1310,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A51%3A16.5329119Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":307200,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_c5a23af1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e86afaf5-78a6-87c4-6f51-7110dba87516","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A29%3A01.6275403Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ea227f75-a096-09b7-5eb7-e318df589443","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_602ac546","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1616' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:35 GMT + - Wed, 19 Feb 2020 11:29:13 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-19T11%3A29%3A01.6275403Z'" expires: - '-1' pragma: @@ -1632,28 +1367,28 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A51%3A16.5329119Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":307200,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_c5a23af1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e86afaf5-78a6-87c4-6f51-7110dba87516","fileSystemId":"e86afaf5-78a6-87c4-6f51-7110dba87516","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A29%3A01.6275403Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ea227f75-a096-09b7-5eb7-e318df589443","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"ea227f75-a096-09b7-5eb7-e318df589443","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv4":true,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_602ac546","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1616' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:36 GMT + - Wed, 19 Feb 2020 11:29:15 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-19T11%3A29%3A01.6275403Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml index dd9daac60e6..719281bfeca 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_accounts.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '56' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.1412692Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A32.3846758Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe73e8af-ea48-4680-a232-27f17a97acda?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6667922e-48a8-43cd-a122-8a5d26bc70cc?api-version=2019-10-01 cache-control: - no-cache content-length: - - '477' + - '482' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:08:37 GMT + - Thu, 20 Feb 2020 15:22:32 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.1412692Z'" + - W/"datetime'2020-02-20T15%3A22%3A32.3846758Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe73e8af-ea48-4680-a232-27f17a97acda?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6667922e-48a8-43cd-a122-8a5d26bc70cc?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fe73e8af-ea48-4680-a232-27f17a97acda","name":"fe73e8af-ea48-4680-a232-27f17a97acda","status":"Succeeded","startTime":"2019-11-15T15:08:37.0485444Z","endTime":"2019-11-15T15:08:37.220432Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6667922e-48a8-43cd-a122-8a5d26bc70cc","name":"6667922e-48a8-43cd-a122-8a5d26bc70cc","status":"Succeeded","startTime":"2020-02-20T15:22:31.953629Z","endTime":"2020-02-20T15:22:33.1567396Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:08 GMT + - Thu, 20 Feb 2020 15:23:04 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.2003112Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.0482963Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '483' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 20 Feb 2020 15:23:04 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.2003112Z'" + - W/"datetime'2020-02-20T15%3A22%3A33.0482963Z'" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -180,36 +180,36 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '56' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A13.6976263Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A08.7198136Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b366de56-6699-42ec-b2d4-e03e7205563f?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c13ad6a4-7e88-4522-b31d-53addde5345b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '477' + - '482' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:14 GMT + - Thu, 20 Feb 2020 15:23:08 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.6976263Z'" + - W/"datetime'2020-02-20T15%3A23%3A08.7198136Z'" expires: - '-1' pragma: @@ -243,24 +243,24 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b366de56-6699-42ec-b2d4-e03e7205563f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c13ad6a4-7e88-4522-b31d-53addde5345b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b366de56-6699-42ec-b2d4-e03e7205563f","name":"b366de56-6699-42ec-b2d4-e03e7205563f","status":"Succeeded","startTime":"2019-11-15T15:09:13.622828Z","endTime":"2019-11-15T15:09:13.7634477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c13ad6a4-7e88-4522-b31d-53addde5345b","name":"c13ad6a4-7e88-4522-b31d-53addde5345b","status":"Succeeded","startTime":"2020-02-20T15:23:08.049755Z","endTime":"2020-02-20T15:23:09.6460502Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:45 GMT + - Thu, 20 Feb 2020 15:23:39 GMT expires: - '-1' pragma: @@ -296,26 +296,26 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A13.7546673Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.5205616Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '483' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:45 GMT + - Thu, 20 Feb 2020 15:23:40 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.7546673Z'" + - W/"datetime'2020-02-20T15%3A23%3A09.5205616Z'" expires: - '-1' pragma: @@ -351,26 +351,26 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A37.2003112Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A13.7546673Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A09.5205616Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A22%3A33.0482963Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '969' + - '979' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:47 GMT + - Thu, 20 Feb 2020 15:23:42 GMT expires: - '-1' pragma: @@ -408,12 +408,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: string: '' @@ -421,17 +421,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7254eca-de33-4501-a7d1-d653abda7c6d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:09:49 GMT + - Thu, 20 Feb 2020 15:23:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7254eca-de33-4501-a7d1-d653abda7c6d?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -463,24 +463,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7254eca-de33-4501-a7d1-d653abda7c6d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7254eca-de33-4501-a7d1-d653abda7c6d","name":"d7254eca-de33-4501-a7d1-d653abda7c6d","status":"Succeeded","startTime":"2019-11-15T15:09:50.5454467Z","endTime":"2019-11-15T15:09:50.6235153Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42957e38-5411-46d5-83e8-c3a596690ba1","name":"42957e38-5411-46d5-83e8-c3a596690ba1","status":"Succeeded","startTime":"2020-02-20T15:23:45.1403748Z","endTime":"2020-02-20T15:23:46.1168747Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:21 GMT + - Thu, 20 Feb 2020 15:24:16 GMT expires: - '-1' pragma: @@ -518,12 +518,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2019-10-01 response: body: string: '' @@ -531,17 +531,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84ab0309-d922-4ba2-b8d0-326d7b0e0165?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:10:24 GMT + - Thu, 20 Feb 2020 15:24:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84ab0309-d922-4ba2-b8d0-326d7b0e0165?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -573,24 +573,24 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84ab0309-d922-4ba2-b8d0-326d7b0e0165?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84ab0309-d922-4ba2-b8d0-326d7b0e0165","name":"84ab0309-d922-4ba2-b8d0-326d7b0e0165","status":"Succeeded","startTime":"2019-11-15T15:10:25.3695889Z","endTime":"2019-11-15T15:10:25.5570025Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1674845b-a1cb-4b24-bd33-b3342d455df3","name":"1674845b-a1cb-4b24-bd33-b3342d455df3","status":"Succeeded","startTime":"2020-02-20T15:24:20.0675181Z","endTime":"2020-02-20T15:24:20.9993153Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:56 GMT + - Thu, 20 Feb 2020 15:24:51 GMT expires: - '-1' pragma: @@ -626,18 +626,16 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-10-01 response: body: string: '{"value":[]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: @@ -645,25 +643,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:59 GMT + - Thu, 20 Feb 2020 15:24: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 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 5f0f9cb3bf4..37b923dafb3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"7be1b136-2d77-4b98-afb7-7ed64d08e100\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7f0a644b-0c4d-4e4f-ad87-8e806ee872b5\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"7c68d4df-4b39-41c5-a55a-8ec5e5f9635e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e795c372-77b6-4891-8f81-280566ea356f?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21536116-90fd-4180-80f3-ec9d657011d3?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:06 GMT + - Wed, 19 Feb 2020 08:18:27 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1dfe9b18-4369-4e19-96ec-bce7a09fd5b7 + - 74a4a230-599c-4d32-bfec-1fcf5147afe6 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e795c372-77b6-4891-8f81-280566ea356f?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/21536116-90fd-4180-80f3-ec9d657011d3?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 08:18:31 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ccb2dc1-fb0c-4c58-9b84-b1411c89438c + - 34143870-d3c6-45c2-b968-467e3dfb993e status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"68d2d541-f3cb-4e59-b154-0f3f5eb3725a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f0a644b-0c4d-4e4f-ad87-8e806ee872b5\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"204389a5-b58c-476a-b93a-de170d94927a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 08:18:32 GMT etag: - - W/"68d2d541-f3cb-4e59-b154-0f3f5eb3725a" + - W/"204389a5-b58c-476a-b93a-de170d94927a" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dae6cf54-bee5-4918-950e-e40ecf36fd79 + - 50536bef-8146-4d4a-a1f6-611349dc1a1b status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"68d2d541-f3cb-4e59-b154-0f3f5eb3725a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f0a644b-0c4d-4e4f-ad87-8e806ee872b5\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"204389a5-b58c-476a-b93a-de170d94927a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Wed, 19 Feb 2020 08:18:34 GMT etag: - - W/"68d2d541-f3cb-4e59-b154-0f3f5eb3725a" + - W/"204389a5-b58c-476a-b93a-de170d94927a" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edd48254-ab64-4984-9830-76cd7011cc92 + - d375f936-b5f2-4904-bb61-60404eacf313 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"be0e548b-80ac-4f2f-a760-c070720c736e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7f0a644b-0c4d-4e4f-ad87-8e806ee872b5\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"be0e548b-80ac-4f2f-a760-c070720c736e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n - \ \"etag\": \"W/\\\"be0e548b-80ac-4f2f-a760-c070720c736e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"c735400e-9cac-4f81-827e-4950c18b8b4e\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5af6fa8c-377e-4f85-84c0-12e294247f05?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5490e1-d704-4607-9837-09429c012aed?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Wed, 19 Feb 2020 08:18:35 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8dff4331-ac7f-409e-9ffc-7bc2150319ea + - 804c9219-88b9-40f8-a308-8ee1ddb3e150 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5af6fa8c-377e-4f85-84c0-12e294247f05?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5490e1-d704-4607-9837-09429c012aed?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:18:39 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f83312a-8785-4357-aebc-26af146f631f + - 8337b94e-a251-4163-b9d1-4625f911620e status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"3182bb78-817b-40bc-b9b1-7464f3422c90\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f0a644b-0c4d-4e4f-ad87-8e806ee872b5\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\",\r\n - \ \"etag\": \"W/\\\"3182bb78-817b-40bc-b9b1-7464f3422c90\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\",\r\n - \ \"etag\": \"W/\\\"3182bb78-817b-40bc-b9b1-7464f3422c90\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e43a822a-035f-472e-b2ea-40e3676d1760\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-01\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01\"\ + ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"b4a874e2-d049-41c4-9747-afe9c08dbc54\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:18:39 GMT etag: - - W/"3182bb78-817b-40bc-b9b1-7464f3422c90" + - W/"b4a874e2-d049-41c4-9747-afe9c08dbc54" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63667370-c9b9-4c86-92a0-88b900706ceb + - 90b6e308-afb3-4a6f-811a-3d2ca215ade2 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A21.5000809Z''\"","location":"westus2","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A18%3A46.9398762Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04bdd607-ce3a-4c5c-b481-86ebb961c3dc?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d70c1ebc-53f4-42f2-b305-eec536fc410c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '426' + - '430' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:21 GMT + - Wed, 19 Feb 2020 08:18:47 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.5000809Z'" + - W/"datetime'2020-02-19T08%3A18%3A46.9398762Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04bdd607-ce3a-4c5c-b481-86ebb961c3dc?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d70c1ebc-53f4-42f2-b305-eec536fc410c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04bdd607-ce3a-4c5c-b481-86ebb961c3dc","name":"04bdd607-ce3a-4c5c-b481-86ebb961c3dc","status":"Succeeded","startTime":"2020-02-07T16:13:21.389426Z","endTime":"2020-02-07T16:13:21.6394301Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d70c1ebc-53f4-42f2-b305-eec536fc410c","name":"d70c1ebc-53f4-42f2-b305-eec536fc410c","status":"Succeeded","startTime":"2020-02-19T08:18:46.4809557Z","endTime":"2020-02-19T08:18:47.7741686Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '566' + - '572' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:53 GMT + - Wed, 19 Feb 2020 08:19:18 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A21.6381785Z''\"","location":"westus2","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01","name":"cli-acc-lefr-01","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A18%3A47.6605545Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '426' + - '431' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:53 GMT + - Wed, 19 Feb 2020 08:19:19 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.6381785Z'" + - W/"datetime'2020-02-19T08%3A18%3A47.6605545Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A58.5501832Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A19%3A26.5601209Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf392953-1ac1-4dc6-8ccb-b91d9eb09c98?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '508' + - '513' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:59 GMT + - Wed, 19 Feb 2020 08:19:27 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A58.5501832Z'" + - W/"datetime'2020-02-19T08%3A19%3A26.5601209Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf392953-1ac1-4dc6-8ccb-b91d9eb09c98?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf392953-1ac1-4dc6-8ccb-b91d9eb09c98","name":"cf392953-1ac1-4dc6-8ccb-b91d9eb09c98","status":"Succeeded","startTime":"2020-02-07T16:13:58.4568234Z","endTime":"2020-02-07T16:13:58.784944Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5b4c8ea0-4fad-4133-b767-3c35f2c6a96c","name":"5b4c8ea0-4fad-4133-b767-3c35f2c6a96c","status":"Succeeded","startTime":"2020-02-19T08:19:26.0117711Z","endTime":"2020-02-19T08:19:27.7884893Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '597' + - '603' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:29 GMT + - Wed, 19 Feb 2020 08:19:58 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A58.7883504Z''\"","location":"westus2","properties":{"poolId":"fd7f6557-2152-e8f5-5e86-1bcbbb91f7ea","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A19%3A27.6831788Z''\"","location":"westus2stage","properties":{"poolId":"9d2fdb81-9968-8946-b67a-5e0d97191ca2","name":"cli-acc-lefr-01/cli-pool-lefr-01","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '599' + - '604' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:29 GMT + - Wed, 19 Feb 2020 08:19:59 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A58.7883504Z'" + - W/"datetime'2020-02-19T08%3A19%3A27.6831788Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-volume-lefr-01", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-volume-lefr-01", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '383' + - '388' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A35.1769864Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A20%3A08.7427713Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 cache-control: - no-cache content-length: - - '852' + - '889' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:35 GMT + - Wed, 19 Feb 2020 08:20:09 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A35.1769864Z'" + - W/"datetime'2020-02-19T08%3A20%3A08.7427713Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -869,24 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:06 GMT + - Wed, 19 Feb 2020 08:20:40 GMT expires: - '-1' pragma: @@ -923,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:15:37 GMT + - Wed, 19 Feb 2020 08:21:11 GMT expires: - '-1' pragma: @@ -977,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:07 GMT + - Wed, 19 Feb 2020 08:21:41 GMT expires: - '-1' pragma: @@ -1031,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:38 GMT + - Wed, 19 Feb 2020 08:22:11 GMT expires: - '-1' pragma: @@ -1085,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:08 GMT + - Wed, 19 Feb 2020 08:22:43 GMT expires: - '-1' pragma: @@ -1139,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:38 GMT + - Wed, 19 Feb 2020 08:23:14 GMT expires: - '-1' pragma: @@ -1193,24 +1198,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:09 GMT + - Wed, 19 Feb 2020 08:23:44 GMT expires: - '-1' pragma: @@ -1247,24 +1252,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:42 GMT + - Wed, 19 Feb 2020 08:24:14 GMT expires: - '-1' pragma: @@ -1301,24 +1306,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:13 GMT + - Wed, 19 Feb 2020 08:24:46 GMT expires: - '-1' pragma: @@ -1355,24 +1360,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:42 GMT + - Wed, 19 Feb 2020 08:25:16 GMT expires: - '-1' pragma: @@ -1409,24 +1414,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Creating","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:13 GMT + - Wed, 19 Feb 2020 08:25:46 GMT expires: - '-1' pragma: @@ -1463,24 +1468,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dc568dad-b314-4da9-a9dd-269821922ed5","name":"dc568dad-b314-4da9-a9dd-269821922ed5","status":"Succeeded","startTime":"2020-02-19T08:20:07.6838916Z","endTime":"2020-02-19T08:26:00.6509989Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '630' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:43 GMT + - Wed, 19 Feb 2020 08:26:16 GMT expires: - '-1' pragma: @@ -1517,2456 +1522,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A26%3A00.5299521Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}],"provisioningState":"Succeeded","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_cd8798f5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '1529' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:21:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:21:43 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:22:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:22:44 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:23:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:23:45 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:24:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:24:46 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:25:16 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:25:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:17 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:18 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:49 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:20 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:22 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:53 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:53 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:24 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:56 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:37:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16: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 --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:28 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:30 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16: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 volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:40:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:41:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:41:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:42:02 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:42:32 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Creating","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:43:02 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a433a6-e24d-450f-83e5-bd524c4a23f7","name":"32a433a6-e24d-450f-83e5-bd524c4a23f7","status":"Succeeded","startTime":"2020-02-07T16:14:35.0837901Z","endTime":"2020-02-07T16:43:15.7313389Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '625' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:43:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A43%3A15.7311901Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"2ea31b2f-cbcf-abe2-b22c-78709a717fc1","name":"cli-volume-lefr-01","serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_b2474e5d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2ea31b2f-cbcf-abe2-b22c-78709a717fc1","fileSystemId":"2ea31b2f-cbcf-abe2-b22c-78709a717fc1","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1489' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:43:34 GMT + - Wed, 19 Feb 2020 08:26:18 GMT etag: - - W/"datetime'2020-02-07T16%3A43%3A15.7311901Z'" + - W/"datetime'2020-02-19T08%3A26%3A00.5299521Z'" expires: - '-1' pragma: @@ -4002,26 +1577,26 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/2ea31b2f-cbcf-abe2-b22c-78709a717fc1","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/2ea31b2f-cbcf-abe2-b22c-78709a717fc1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2","properties":{"provisioningState":"Succeeded","mountTargetId":"2ea31b2f-cbcf-abe2-b22c-78709a717fc1","fileSystemId":"2ea31b2f-cbcf-abe2-b22c-78709a717fc1","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-lefr-01/capacityPools/cli-pool-lefr-01/volumes/cli-volume-lefr-01/mountTargets/4ed0173a-1041-7f8d-e8b1-3be59bac61cc","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/4ed0173a-1041-7f8d-e8b1-3be59bac61cc","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","fileSystemId":"4ed0173a-1041-7f8d-e8b1-3be59bac61cc","startIp":"10.0.0.14","endIp":"10.0.0.14","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.14"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '781' + - '789' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:36 GMT + - Wed, 19 Feb 2020 08:26:22 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml index 9c6d2fe8611..d6d20452a1b 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A14%3A49.1320218Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A38%3A17.773084Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/557b1e54-94d3-44db-8680-2068616a0a30?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e6c8ba6-681f-402b-a538-446e5c5e0887?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '456' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:49 GMT + - Thu, 20 Feb 2020 15:38:17 GMT etag: - - W/"datetime'2019-11-15T15%3A14%3A49.1320218Z'" + - W/"datetime'2020-02-20T15%3A38%3A17.773084Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/557b1e54-94d3-44db-8680-2068616a0a30?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e6c8ba6-681f-402b-a538-446e5c5e0887?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/557b1e54-94d3-44db-8680-2068616a0a30","name":"557b1e54-94d3-44db-8680-2068616a0a30","status":"Succeeded","startTime":"2019-11-15T15:14:49.0757312Z","endTime":"2019-11-15T15:14:49.2007428Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8e6c8ba6-681f-402b-a538-446e5c5e0887","name":"8e6c8ba6-681f-402b-a538-446e5c5e0887","status":"Succeeded","startTime":"2020-02-20T15:38:17.3785578Z","endTime":"2020-02-20T15:38:18.5615368Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:15:20 GMT + - Thu, 20 Feb 2020 15:38:49 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A14%3A49.1950662Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A38%3A18.455726Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:15:20 GMT + - Thu, 20 Feb 2020 15:38:49 GMT etag: - - W/"datetime'2019-11-15T15%3A14%3A49.1950662Z'" + - W/"datetime'2020-02-20T15%3A38%3A18.455726Z'" expires: - '-1' pragma: @@ -169,8 +169,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -181,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A15%3A25.5569212Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A53.2934556Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e16c8ab-2cb8-4145-8568-4e7e78c49e18?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de9884bd-c1ef-47ad-9cbb-804f22323a5e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:15:25 GMT + - Thu, 20 Feb 2020 15:38:53 GMT etag: - - W/"datetime'2019-11-15T15%3A15%3A25.5569212Z'" + - W/"datetime'2020-02-20T15%3A38%3A53.2934556Z'" expires: - '-1' pragma: @@ -244,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e16c8ab-2cb8-4145-8568-4e7e78c49e18?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de9884bd-c1ef-47ad-9cbb-804f22323a5e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e16c8ab-2cb8-4145-8568-4e7e78c49e18","name":"6e16c8ab-2cb8-4145-8568-4e7e78c49e18","status":"Succeeded","startTime":"2019-11-15T15:15:25.4988522Z","endTime":"2019-11-15T15:15:25.8270198Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/de9884bd-c1ef-47ad-9cbb-804f22323a5e","name":"de9884bd-c1ef-47ad-9cbb-804f22323a5e","status":"Succeeded","startTime":"2020-02-20T15:38:52.8414995Z","endTime":"2020-02-20T15:38:54.2695553Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:15:56 GMT + - Thu, 20 Feb 2020 15:39:24 GMT expires: - '-1' pragma: @@ -297,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A15%3A25.8241111Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"77cc2f40-b9a5-e66e-d734-47f7ec0725af","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A54.1622737Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"569316ac-3bda-8423-db45-04575c3e9161","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:15:57 GMT + - Thu, 20 Feb 2020 15:39:25 GMT etag: - - W/"datetime'2019-11-15T15%3A15%3A25.8241111Z'" + - W/"datetime'2020-02-20T15%3A38%3A54.1622737Z'" expires: - '-1' pragma: @@ -339,8 +339,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -351,36 +351,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A16%3A02.710332Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A28.633659Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06a8ae79-687d-4f48-b3f4-40ba870a9896?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00dee926-bbab-4a6e-9ddf-99e614b42e63?api-version=2019-10-01 cache-control: - no-cache content-length: - - '566' + - '571' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:16:02 GMT + - Thu, 20 Feb 2020 15:39:28 GMT etag: - - W/"datetime'2019-11-15T15%3A16%3A02.710332Z'" + - W/"datetime'2020-02-20T15%3A39%3A28.633659Z'" expires: - '-1' pragma: @@ -414,24 +414,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06a8ae79-687d-4f48-b3f4-40ba870a9896?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00dee926-bbab-4a6e-9ddf-99e614b42e63?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/06a8ae79-687d-4f48-b3f4-40ba870a9896","name":"06a8ae79-687d-4f48-b3f4-40ba870a9896","status":"Succeeded","startTime":"2019-11-15T15:16:02.6708723Z","endTime":"2019-11-15T15:16:02.8583722Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/00dee926-bbab-4a6e-9ddf-99e614b42e63","name":"00dee926-bbab-4a6e-9ddf-99e614b42e63","status":"Succeeded","startTime":"2020-02-20T15:39:28.2306986Z","endTime":"2020-02-20T15:39:29.6216763Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:16:34 GMT + - Thu, 20 Feb 2020 15:39:59 GMT expires: - '-1' pragma: @@ -467,26 +467,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A16%3A02.8624401Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"80779b1a-f3b4-7646-22d7-8b4d68fe0709","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A29.4754512Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7b1b2e82-d754-0bb2-eec2-f0190e7730f8","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:16:34 GMT + - Thu, 20 Feb 2020 15:40:00 GMT etag: - - W/"datetime'2019-11-15T15%3A16%3A02.8624401Z'" + - W/"datetime'2020-02-20T15%3A39%3A29.4754512Z'" expires: - '-1' pragma: @@ -522,26 +522,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A15%3A25.8241111Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"77cc2f40-b9a5-e66e-d734-47f7ec0725af","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A16%3A02.8624401Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"80779b1a-f3b4-7646-22d7-8b4d68fe0709","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A39%3A29.4754512Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7b1b2e82-d754-0bb2-eec2-f0190e7730f8","name":"cli000002/cli000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A38%3A54.1622737Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"569316ac-3bda-8423-db45-04575c3e9161","name":"cli000002/cli000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1363' + - '1373' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:16:37 GMT + - Thu, 20 Feb 2020 15:40:02 GMT expires: - '-1' pragma: @@ -579,12 +579,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2019-10-01 response: body: string: '' @@ -592,17 +592,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4f9393f-a93d-44f3-886c-0f34836200a4?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:16:39 GMT + - Thu, 20 Feb 2020 15:40:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4f9393f-a93d-44f3-886c-0f34836200a4?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -634,24 +634,24 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4f9393f-a93d-44f3-886c-0f34836200a4?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4f9393f-a93d-44f3-886c-0f34836200a4","name":"e4f9393f-a93d-44f3-886c-0f34836200a4","status":"Succeeded","startTime":"2019-11-15T15:16:40.5875409Z","endTime":"2019-11-15T15:16:40.9001398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/17d7fab9-1bb3-4384-9340-9b417c19a8b9","name":"17d7fab9-1bb3-4384-9340-9b417c19a8b9","status":"Succeeded","startTime":"2020-02-20T15:40:06.3710852Z","endTime":"2020-02-20T15:40:07.2886739Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:17:11 GMT + - Thu, 20 Feb 2020 15:40:38 GMT expires: - '-1' pragma: @@ -689,12 +689,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2019-10-01 response: body: string: '' @@ -702,17 +702,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36233d31-feca-4721-a502-7a2e313bd2cf?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:17:14 GMT + - Thu, 20 Feb 2020 15:40:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36233d31-feca-4721-a502-7a2e313bd2cf?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -724,7 +724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -744,24 +744,24 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36233d31-feca-4721-a502-7a2e313bd2cf?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36233d31-feca-4721-a502-7a2e313bd2cf","name":"36233d31-feca-4721-a502-7a2e313bd2cf","status":"Succeeded","startTime":"2019-11-15T15:17:15.1349268Z","endTime":"2019-11-15T15:17:15.3537168Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aa38a0a9-51d8-472b-b97d-fbfdaeba93a3","name":"aa38a0a9-51d8-472b-b97d-fbfdaeba93a3","status":"Succeeded","startTime":"2020-02-20T15:40:41.5496631Z","endTime":"2020-02-20T15:40:42.3299007Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:17:46 GMT + - Thu, 20 Feb 2020 15:41:13 GMT expires: - '-1' pragma: @@ -797,12 +797,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2019-10-01 response: body: string: '{"value":[]}' @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:17:48 GMT + - Thu, 20 Feb 2020 15:41:15 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml index 7ae13c51a63..c4777d753e6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"83b70524-a83b-47de-94ff-e3e904c2161d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"971eb88c-1d04-41a5-a7cb-c9bd11162ea6\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"20d19e93-ce4d-4fdf-8661-7c419d0ccfeb\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"6ad06e2c-f5b0-4e4d-957d-0e33fcf48dba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e418f756-ae7c-4aa7-b008-d87b0cc408f1?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0b6ce93-ed74-48e7-b3d2-3262258065ea?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:05 GMT + - Wed, 19 Feb 2020 08:27:12 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 850f0d83-1146-4fda-a231-425c827fbf25 + - 530233a0-e897-422a-8a18-07616a7b5ee2 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e418f756-ae7c-4aa7-b008-d87b0cc408f1?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b0b6ce93-ed74-48e7-b3d2-3262258065ea?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Wed, 19 Feb 2020 08:27:15 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d0333b9-08b7-45a1-9210-60b5d03eec42 + - 559c4de6-1c98-4f02-bb0a-16747df0ae95 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"387a265a-b9b1-47b2-a17a-2ce15769ef49\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"971eb88c-1d04-41a5-a7cb-c9bd11162ea6\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"b79e4d17-187c-40c6-ab80-07f9a88c49fd\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6ad06e2c-f5b0-4e4d-957d-0e33fcf48dba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Wed, 19 Feb 2020 08:27:16 GMT etag: - - W/"387a265a-b9b1-47b2-a17a-2ce15769ef49" + - W/"b79e4d17-187c-40c6-ab80-07f9a88c49fd" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6781eeca-f902-43cb-8870-ff2c41a1a4cb + - ed9ac0e3-605b-4e15-93f3-60d7647f2758 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"387a265a-b9b1-47b2-a17a-2ce15769ef49\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"971eb88c-1d04-41a5-a7cb-c9bd11162ea6\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"b79e4d17-187c-40c6-ab80-07f9a88c49fd\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6ad06e2c-f5b0-4e4d-957d-0e33fcf48dba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Wed, 19 Feb 2020 08:27:17 GMT etag: - - W/"387a265a-b9b1-47b2-a17a-2ce15769ef49" + - W/"b79e4d17-187c-40c6-ab80-07f9a88c49fd" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc3565e2-4acb-47d3-bcd0-868932fe76a0 + - 9ddc96e2-7ae6-42fd-b1f6-00a18c6cd186 status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d6b63f79-d7b0-436d-aebb-5e8d034df458\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"971eb88c-1d04-41a5-a7cb-c9bd11162ea6\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"d6b63f79-d7b0-436d-aebb-5e8d034df458\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d6b63f79-d7b0-436d-aebb-5e8d034df458\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"2672708d-e00a-47f8-b360-89096005ba28\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"6ad06e2c-f5b0-4e4d-957d-0e33fcf48dba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"2672708d-e00a-47f8-b360-89096005ba28\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"2672708d-e00a-47f8-b360-89096005ba28\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95ea5936-17cf-4a8e-891d-9de2c0dacfeb?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/44e6b10c-ed8a-4071-ac4a-c354773020da?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Wed, 19 Feb 2020 08:27:18 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f96eb11a-0b7e-4c48-af5b-c8d4f0712777 + - fec1e62f-0ac7-4083-8e9d-2131376a6820 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95ea5936-17cf-4a8e-891d-9de2c0dacfeb?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/44e6b10c-ed8a-4071-ac4a-c354773020da?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:27:22 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 900ce8c3-db73-4ce2-91b5-5c4389009dd1 + - c3697c3f-9450-4f86-a75e-b54b29be4e16 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"224f981a-1ef4-4aff-bf7c-c1b1e7064f57\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"971eb88c-1d04-41a5-a7cb-c9bd11162ea6\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.5.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\",\r\n - \ \"etag\": \"W/\\\"224f981a-1ef4-4aff-bf7c-c1b1e7064f57\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\",\r\n - \ \"etag\": \"W/\\\"224f981a-1ef4-4aff-bf7c-c1b1e7064f57\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"fea69266-fd70-486e-bf67-1bb33ac4038a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6ad06e2c-f5b0-4e4d-957d-0e33fcf48dba\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.5.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-lefr-02\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"fea69266-fd70-486e-bf67-1bb33ac4038a\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.5.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"fea69266-fd70-486e-bf67-1bb33ac4038a\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Wed, 19 Feb 2020 08:27:22 GMT etag: - - W/"224f981a-1ef4-4aff-bf7c-c1b1e7064f57" + - W/"fea69266-fd70-486e-bf67-1bb33ac4038a" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6cdfc6c0-b296-4917-9e24-1a9569426bda + - c1566e55-b5cf-475b-b082-006b49944112 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A21.3249585Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A27%3A28.4771527Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7718369d-3ae5-48f9-b6f7-29841e4b14ad?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f15ac32f-022e-4672-aa40-d78f536004d6?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:21 GMT + - Wed, 19 Feb 2020 08:27:29 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.3249585Z'" + - W/"datetime'2020-02-19T08%3A27%3A28.4771527Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7718369d-3ae5-48f9-b6f7-29841e4b14ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f15ac32f-022e-4672-aa40-d78f536004d6?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7718369d-3ae5-48f9-b6f7-29841e4b14ad","name":"7718369d-3ae5-48f9-b6f7-29841e4b14ad","status":"Succeeded","startTime":"2020-02-07T16:13:21.2488438Z","endTime":"2020-02-07T16:13:21.5612957Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f15ac32f-022e-4672-aa40-d78f536004d6","name":"f15ac32f-022e-4672-aa40-d78f536004d6","status":"Succeeded","startTime":"2020-02-19T08:27:28.0597723Z","endTime":"2020-02-19T08:27:29.2616598Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:53 GMT + - Wed, 19 Feb 2020 08:28:00 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A13%3A21.5481155Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T08%3A27%3A29.15879Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '456' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:53 GMT + - Wed, 19 Feb 2020 08:28:01 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.5481155Z'" + - W/"datetime'2020-02-19T08%3A27%3A29.15879Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.5287581Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A28%3A09.8539339Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b73ca4a-2400-435f-b0bf-06aef4270495?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/544e7990-6774-476a-88f1-8d4b52395b20?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:56 GMT + - Wed, 19 Feb 2020 08:28:11 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.5287581Z'" + - W/"datetime'2020-02-19T08%3A28%3A09.8539339Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b73ca4a-2400-435f-b0bf-06aef4270495?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/544e7990-6774-476a-88f1-8d4b52395b20?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b73ca4a-2400-435f-b0bf-06aef4270495","name":"1b73ca4a-2400-435f-b0bf-06aef4270495","status":"Succeeded","startTime":"2020-02-07T16:13:56.4367617Z","endTime":"2020-02-07T16:13:56.6593865Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/544e7990-6774-476a-88f1-8d4b52395b20","name":"544e7990-6774-476a-88f1-8d4b52395b20","status":"Succeeded","startTime":"2020-02-19T08:28:09.0861175Z","endTime":"2020-02-19T08:28:12.09713Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '618' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:27 GMT + - Wed, 19 Feb 2020 08:28:42 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A13%3A56.6588508Z''\"","location":"westus2","properties":{"poolId":"43ec1168-68a9-e170-ccbf-04564366b03a","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T08%3A28%3A11.6416165Z''\"","location":"westus2stage","properties":{"poolId":"faf4e634-8848-e0b0-03d3-53fb18ad5f1d","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:28 GMT + - Wed, 19 Feb 2020 08:28:43 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.6588508Z'" + - W/"datetime'2020-02-19T08%3A28%3A11.6416165Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '389' + - '394' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A14%3A32.8793632Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A28%3A51.0916969Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 cache-control: - no-cache content-length: - - '904' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:33 GMT + - Wed, 19 Feb 2020 08:28:52 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A32.8793632Z'" + - W/"datetime'2020-02-19T08%3A28%3A51.0916969Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -869,186 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:15:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:15:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:16:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Creating","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:16:35 GMT + - Wed, 19 Feb 2020 08:29:23 GMT expires: - '-1' pragma: @@ -1085,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Creating","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:04 GMT + - Wed, 19 Feb 2020 08:29:53 GMT expires: - '-1' pragma: @@ -1139,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Creating","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:35 GMT + - Wed, 19 Feb 2020 08:30:23 GMT expires: - '-1' pragma: @@ -1193,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Creating","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:05 GMT + - Wed, 19 Feb 2020 08:30:54 GMT expires: - '-1' pragma: @@ -1247,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Creating","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:38 GMT + - Wed, 19 Feb 2020 08:31:26 GMT expires: - '-1' pragma: @@ -1301,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f539e22b-45ea-4946-995d-03cd934f0897","name":"f539e22b-45ea-4946-995d-03cd934f0897","status":"Succeeded","startTime":"2020-02-19T08:28:50.6354001Z","endTime":"2020-02-19T08:31:32.3745066Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:09 GMT + - Wed, 19 Feb 2020 08:31:56 GMT expires: - '-1' pragma: @@ -1355,24 +1198,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T08%3A31%3A32.1740997Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"provisioningState":"Succeeded","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_553d9f49","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1584' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:38 GMT + - Wed, 19 Feb 2020 08:31:57 GMT + etag: + - W/"datetime'2020-02-19T08%3A31%3A32.1740997Z'" expires: - '-1' pragma: @@ -1395,2265 +1240,49 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2stage", "properties": {"fileSystemId": "6f9f0a38-1338-07f9-dfb8-3eabce8ae542"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot create Connection: - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: + Content-Length: + - '100' + Content-Type: - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:20:10 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","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/westus2stage/operationResults/d7b1dd91-a9e5-42d6-a777-c26976d3c56c?api-version=2019-10-01 cache-control: - no-cache content-length: - - '637' + - '667' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:40 GMT + - Wed, 19 Feb 2020 08:32:06 GMT expires: - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:21:11 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:21:41 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:22:13 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:22:43 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:23:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:23:44 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:24:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:24:45 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:25:16 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:25:46 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:17 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:26:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:18 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:27:48 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:28:49 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:19 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:29:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:21 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:31:52 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:22 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:32:53 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:33:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:23 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:34:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:36:55 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:37:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:37:56 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:26 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:38:56 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Creating","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/05ee2586-44e9-4ecd-9d97-fafb6e2983ad","name":"05ee2586-44e9-4ecd-9d97-fafb6e2983ad","status":"Succeeded","startTime":"2020-02-07T16:14:32.7538623Z","endTime":"2020-02-07T16:39:41.1837528Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A39%3A41.1750537Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_6e8cabaa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","startIp":"10.5.0.4","endIp":"10.5.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1547' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:39:58 GMT - etag: - - W/"datetime'2020-02-07T16%3A39%3A41.1750537Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "properties": {"fileSystemId": "205fda2d-8f4d-d12b-05e1-3c0677bfd975"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - Content-Length: - - '95' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -s -l --file-system-id - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000005"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d5e3f9c-38ee-44e4-affc-dc6914d8fbbf?api-version=2019-08-01 - cache-control: - - no-cache - content-length: - - '662' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:40:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d5e3f9c-38ee-44e4-affc-dc6914d8fbbf?api-version=2019-08-01&operationResultResponseType=Location + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7b1dd91-a9e5-42d6-a777-c26976d3c56c?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3665,7 +1294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -3685,24 +1314,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d5e3f9c-38ee-44e4-affc-dc6914d8fbbf?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7b1dd91-a9e5-42d6-a777-c26976d3c56c?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d5e3f9c-38ee-44e4-affc-dc6914d8fbbf","name":"3d5e3f9c-38ee-44e4-affc-dc6914d8fbbf","status":"Succeeded","startTime":"2020-02-07T16:40:03.993115Z","endTime":"2020-02-07T16:40:06.1535033Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7b1dd91-a9e5-42d6-a777-c26976d3c56c","name":"d7b1dd91-a9e5-42d6-a777-c26976d3c56c","status":"Succeeded","startTime":"2020-02-19T08:32:05.2009048Z","endTime":"2020-02-19T08:32:07.32374Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '682' + - '686' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:40:36 GMT + - Wed, 19 Feb 2020 08:32:38 GMT expires: - '-1' pragma: @@ -3738,24 +1367,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"facbfd13-be5b-2ef4-f768-bc922aa2bd61","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000005","created":"2020-02-07T16:40:04Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"f39d27a7-4e19-4ad4-1622-a7037fa4b523","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-sn-000005","created":"2020-02-19T08:32:05Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:40:36 GMT + - Wed, 19 Feb 2020 08:32:42 GMT expires: - '-1' pragma: @@ -3778,7 +1407,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "205fda2d-8f4d-d12b-05e1-3c0677bfd975"}}' + body: '{"location": "westus2stage", "properties": {"fileSystemId": "6f9f0a38-1338-07f9-dfb8-3eabce8ae542"}}' headers: Accept: - application/json @@ -3789,38 +1418,38 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '100' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75d25b18-0e94-47cc-b21c-c0d6727a7521?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a4d1c197-2cb2-4f89-a351-5a545bb69061?api-version=2019-10-01 cache-control: - no-cache content-length: - - '662' + - '667' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:40:41 GMT + - Wed, 19 Feb 2020 08:32:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75d25b18-0e94-47cc-b21c-c0d6727a7521?api-version=2019-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a4d1c197-2cb2-4f89-a351-5a545bb69061?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3832,7 +1461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -3852,24 +1481,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75d25b18-0e94-47cc-b21c-c0d6727a7521?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a4d1c197-2cb2-4f89-a351-5a545bb69061?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75d25b18-0e94-47cc-b21c-c0d6727a7521","name":"75d25b18-0e94-47cc-b21c-c0d6727a7521","status":"Succeeded","startTime":"2020-02-07T16:40:41.4218799Z","endTime":"2020-02-07T16:40:43.6719192Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a4d1c197-2cb2-4f89-a351-5a545bb69061","name":"a4d1c197-2cb2-4f89-a351-5a545bb69061","status":"Succeeded","startTime":"2020-02-19T08:32:50.4778172Z","endTime":"2020-02-19T08:32:52.9119161Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '683' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:41:13 GMT + - Wed, 19 Feb 2020 08:33:21 GMT expires: - '-1' pragma: @@ -3905,24 +1534,24 @@ interactions: ParameterSetName: - -g -a -p -v -s -l --file-system-id User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"fd29497c-123f-707c-1a90-c51a78a47642","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000006","created":"2020-02-07T16:40:41Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"fa256bff-0ed9-f3e1-3e8d-a520f841ef74","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-sn-000006","created":"2020-02-19T08:32:51Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '748' + - '753' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:41:15 GMT + - Wed, 19 Feb 2020 08:33:22 GMT expires: - '-1' pragma: @@ -3958,26 +1587,26 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"facbfd13-be5b-2ef4-f768-bc922aa2bd61","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000005","created":"2020-02-07T16:40:04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"fd29497c-123f-707c-1a90-c51a78a47642","fileSystemId":"205fda2d-8f4d-d12b-05e1-3c0677bfd975","name":"cli-sn-000006","created":"2020-02-07T16:40:41Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"f39d27a7-4e19-4ad4-1622-a7037fa4b523","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-sn-000005","created":"2020-02-19T08:32:05Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"fa256bff-0ed9-f3e1-3e8d-a520f841ef74","fileSystemId":"6f9f0a38-1338-07f9-dfb8-3eabce8ae542","name":"cli-sn-000006","created":"2020-02-19T08:32:51Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1509' + - '1519' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:41:17 GMT + - Wed, 19 Feb 2020 08:33:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml index 6bc718d2d9e..dbefd36143e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"db329d98-1a6a-4b24-a1e5-8fb1ac745a84\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"72590b48-cebc-450f-9933-c6e9a9c20a84\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"3ac743d5-3e5f-4d38-b5fc-d214819e22b6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"999c6193-2df2-4e4e-9282-b525ce1d49c2\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1a1ccbf-b49a-400d-adf7-b251bc13a3bd?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1c9ab6f8-9228-46ef-9b3e-08919777797d?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:49 GMT + - Wed, 19 Feb 2020 11:23:58 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2fecf17d-c626-480c-8424-107fc84dc14c + - a5d36b79-dfb1-40aa-aa10-dcfac5f20823 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c1a1ccbf-b49a-400d-adf7-b251bc13a3bd?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1c9ab6f8-9228-46ef-9b3e-08919777797d?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:53 GMT + - Wed, 19 Feb 2020 11:24:02 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bbee543e-3340-4013-8e2a-f3bd1145fc34 + - 2d059016-0a75-48ca-812f-0943ded201e4 status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"9b529a92-0190-4f00-8f57-255afb16d5ba\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"72590b48-cebc-450f-9933-c6e9a9c20a84\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"c0b4e277-a1d7-4652-9feb-37dae70dbde6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"999c6193-2df2-4e4e-9282-b525ce1d49c2\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:53 GMT + - Wed, 19 Feb 2020 11:24:03 GMT etag: - - W/"9b529a92-0190-4f00-8f57-255afb16d5ba" + - W/"c0b4e277-a1d7-4652-9feb-37dae70dbde6" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e0563b4-a77e-491d-8660-bff78882a219 + - e159f985-1c9b-4a79-946b-1187b06e4940 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"9b529a92-0190-4f00-8f57-255afb16d5ba\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"72590b48-cebc-450f-9933-c6e9a9c20a84\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"c0b4e277-a1d7-4652-9feb-37dae70dbde6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"999c6193-2df2-4e4e-9282-b525ce1d49c2\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:54 GMT + - Wed, 19 Feb 2020 11:24:04 GMT etag: - - W/"9b529a92-0190-4f00-8f57-255afb16d5ba" + - W/"c0b4e277-a1d7-4652-9feb-37dae70dbde6" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d76f2395-21f4-4bf5-9475-364ee7f6472d + - 80e53a45-c2c0-47d8-96b3-859d3f13052c status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"d4ab06da-e823-418e-bd6a-aa646c8c3e89\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"72590b48-cebc-450f-9933-c6e9a9c20a84\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"d4ab06da-e823-418e-bd6a-aa646c8c3e89\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d4ab06da-e823-418e-bd6a-aa646c8c3e89\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"23fa7aa5-12c7-478a-a898-b129cc9198c5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"999c6193-2df2-4e4e-9282-b525ce1d49c2\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\"\ + ,\r\n \"etag\": \"W/\\\"23fa7aa5-12c7-478a-a898-b129cc9198c5\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"23fa7aa5-12c7-478a-a898-b129cc9198c5\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/73738010-98bb-4bff-8a3e-5c3a91039e7a?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcca5476-d2fa-4e52-9b2f-fd0d26b4f2f2?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:54 GMT + - Wed, 19 Feb 2020 11:24:05 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03107770-f7a2-4112-8098-424ab7383f84 + - ea8acc6c-4129-44ab-9bc0-c50bcf4b818a x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/73738010-98bb-4bff-8a3e-5c3a91039e7a?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcca5476-d2fa-4e52-9b2f-fd0d26b4f2f2?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:59 GMT + - Wed, 19 Feb 2020 11:24:08 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a938441-ceb4-4498-bd36-542a63c26d6d + - f0fde323-fd9c-4eb8-8715-8b3c0c2b08f0 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n - \ \"etag\": \"W/\\\"0ea3fd87-133c-4b32-9ebf-97ed1b9f2e54\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"72590b48-cebc-450f-9933-c6e9a9c20a84\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n - \ \"etag\": \"W/\\\"0ea3fd87-133c-4b32-9ebf-97ed1b9f2e54\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n - \ \"etag\": \"W/\\\"0ea3fd87-133c-4b32-9ebf-97ed1b9f2e54\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"a559a895-9256-457d-af40-cc4ad3cb4054\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"999c6193-2df2-4e4e-9282-b525ce1d49c2\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000007\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\"\ + ,\r\n \"etag\": \"W/\\\"a559a895-9256-457d-af40-cc4ad3cb4054\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"a559a895-9256-457d-af40-cc4ad3cb4054\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:00 GMT + - Wed, 19 Feb 2020 11:24:09 GMT etag: - - W/"0ea3fd87-133c-4b32-9ebf-97ed1b9f2e54" + - W/"a559a895-9256-457d-af40-cc4ad3cb4054" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edc9c6c6-f39f-48c2-90d1-5e3e0a220c50 + - 0b4b5137-9e21-4621-8688-68ed0a742b83 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A51%3A06.8881176Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A16.320715Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14645fa0-3e8f-4a09-93f7-bfdc9ff7cba7?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/654f892d-0f22-4342-a07a-24fcca4361fd?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '456' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:08 GMT + - Wed, 19 Feb 2020 11:24:16 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A06.8881176Z'" + - W/"datetime'2020-02-19T11%3A24%3A16.320715Z'" expires: - '-1' pragma: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14645fa0-3e8f-4a09-93f7-bfdc9ff7cba7?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/654f892d-0f22-4342-a07a-24fcca4361fd?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14645fa0-3e8f-4a09-93f7-bfdc9ff7cba7","name":"14645fa0-3e8f-4a09-93f7-bfdc9ff7cba7","status":"Succeeded","startTime":"2020-02-07T16:51:06.8148781Z","endTime":"2020-02-07T16:51:06.9435589Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/654f892d-0f22-4342-a07a-24fcca4361fd","name":"654f892d-0f22-4342-a07a-24fcca4361fd","status":"Succeeded","startTime":"2020-02-19T11:24:15.7292177Z","endTime":"2020-02-19T11:24:17.22445Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:38 GMT + - Wed, 19 Feb 2020 11:24:48 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A51%3A06.9621696Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A24%3A17.1204656Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:39 GMT + - Wed, 19 Feb 2020 11:24:48 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A06.9621696Z'" + - W/"datetime'2020-02-19T11%3A24%3A17.1204656Z'" expires: - '-1' pragma: @@ -622,8 +627,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '122' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A51%3A46.2758644Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A56.7196607Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eada096-3af6-4e56-afa8-01c02b277e75?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/202eba93-6ad8-4603-9ed4-bacc999014a4?api-version=2019-10-01 cache-control: - no-cache content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:46 GMT + - Wed, 19 Feb 2020 11:24:58 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A46.2758644Z'" + - W/"datetime'2020-02-19T11%3A24%3A56.7196607Z'" expires: - '-1' pragma: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eada096-3af6-4e56-afa8-01c02b277e75?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/202eba93-6ad8-4603-9ed4-bacc999014a4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eada096-3af6-4e56-afa8-01c02b277e75","name":"4eada096-3af6-4e56-afa8-01c02b277e75","status":"Succeeded","startTime":"2020-02-07T16:51:46.1983272Z","endTime":"2020-02-07T16:51:46.4170648Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/202eba93-6ad8-4603-9ed4-bacc999014a4","name":"202eba93-6ad8-4603-9ed4-bacc999014a4","status":"Succeeded","startTime":"2020-02-19T11:24:56.0315551Z","endTime":"2020-02-19T11:24:57.8339212Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:52:18 GMT + - Wed, 19 Feb 2020 11:25:29 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A51%3A46.4349764Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"c0353e8a-877d-d802-63cd-cd420b449dce","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A24%3A57.7205998Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"c019211f-c5e6-1e50-bd06-0701658e926d","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '675' + - '680' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:52:18 GMT + - Wed, 19 Feb 2020 11:25:29 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A46.4349764Z'" + - W/"datetime'2020-02-19T11%3A24%3A57.7205998Z'" expires: - '-1' pragma: @@ -792,9 +797,9 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": - "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' headers: Accept: - application/json @@ -805,37 +810,37 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '428' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A52%3A23.7722805Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A25%3A38.7291183Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 cache-control: - no-cache content-length: - - '935' + - '972' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:52:24 GMT + - Wed, 19 Feb 2020 11:25:39 GMT etag: - - W/"datetime'2020-02-07T16%3A52%3A23.7722805Z'" + - W/"datetime'2020-02-19T11%3A25%3A38.7291183Z'" expires: - '-1' pragma: @@ -849,7 +854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' x-powered-by: - ASP.NET status: @@ -870,24 +875,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Creating","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:52:55 GMT + - Wed, 19 Feb 2020 11:26:10 GMT expires: - '-1' pragma: @@ -924,24 +929,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Creating","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:53:26 GMT + - Wed, 19 Feb 2020 11:26:40 GMT expires: - '-1' pragma: @@ -978,24 +983,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Creating","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:53:56 GMT + - Wed, 19 Feb 2020 11:27:12 GMT expires: - '-1' pragma: @@ -1032,24 +1037,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Creating","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:54:27 GMT + - Wed, 19 Feb 2020 11:27:42 GMT expires: - '-1' pragma: @@ -1086,24 +1091,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Creating","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:54:57 GMT + - Wed, 19 Feb 2020 11:28:13 GMT expires: - '-1' pragma: @@ -1140,24 +1145,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78148e28-beab-406f-8b50-8bfd8fecce31","name":"78148e28-beab-406f-8b50-8bfd8fecce31","status":"Succeeded","startTime":"2020-02-07T16:52:23.6786499Z","endTime":"2020-02-07T16:55:15.6587289Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:55:28 GMT + - Wed, 19 Feb 2020 11:28:43 GMT expires: - '-1' pragma: @@ -1194,26 +1199,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A55%3A15.6463611Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_d2af3479","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","fileSystemId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:55:28 GMT - etag: - - W/"datetime'2020-02-07T16%3A55%3A15.6463611Z'" + - Wed, 19 Feb 2020 11:29:14 GMT expires: - '-1' pragma: @@ -1236,9 +1239,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": - "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' + body: null headers: Accept: - application/json @@ -1248,38 +1249,82 @@ interactions: - netappfiles volume create Connection: - keep-alive - Content-Length: - - '423' - Content-Type: + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:29:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-08-01 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A55%3A34.5416721Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 cache-control: - no-cache content-length: - - '935' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:55:34 GMT - etag: - - W/"datetime'2020-02-07T16%3A55%3A34.5416721Z'" + - Wed, 19 Feb 2020 11:30:15 GMT expires: - '-1' pragma: @@ -1290,15 +1335,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: - - '1193' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1311,27 +1358,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:56:06 GMT + - Wed, 19 Feb 2020 11:30:46 GMT expires: - '-1' pragma: @@ -1365,27 +1412,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:56:37 GMT + - Wed, 19 Feb 2020 11:31:16 GMT expires: - '-1' pragma: @@ -1419,27 +1466,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:57:06 GMT + - Wed, 19 Feb 2020 11:31:46 GMT expires: - '-1' pragma: @@ -1473,27 +1520,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:57:37 GMT + - Wed, 19 Feb 2020 11:32:17 GMT expires: - '-1' pragma: @@ -1527,27 +1574,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:58:08 GMT + - Wed, 19 Feb 2020 11:32:48 GMT expires: - '-1' pragma: @@ -1581,27 +1628,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:58:38 GMT + - Wed, 19 Feb 2020 11:33:18 GMT expires: - '-1' pragma: @@ -1635,27 +1682,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:59:09 GMT + - Wed, 19 Feb 2020 11:33:49 GMT expires: - '-1' pragma: @@ -1689,27 +1736,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Creating","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:59:39 GMT + - Wed, 19 Feb 2020 11:34:19 GMT expires: - '-1' pragma: @@ -1743,27 +1790,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c8215e35-f034-45b2-8a17-3a51a450736f","name":"c8215e35-f034-45b2-8a17-3a51a450736f","status":"Succeeded","startTime":"2020-02-07T16:55:34.4834856Z","endTime":"2020-02-07T16:59:55.0198872Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:10 GMT + - Wed, 19 Feb 2020 11:34:50 GMT expires: - '-1' pragma: @@ -1797,29 +1844,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A59%3A55.0178137Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_82f2802c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f647c1e9-f031-9651-62b7-1905b030e799","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:11 GMT - etag: - - W/"datetime'2020-02-07T16%3A59%3A55.0178137Z'" + - Wed, 19 Feb 2020 11:35:20 GMT expires: - '-1' pragma: @@ -1849,32 +1894,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --resource-group -a -p + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A59%3A55.0178137Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_82f2802c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f647c1e9-f031-9651-62b7-1905b030e799","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A55%3A15.6463611Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_d2af3479","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","fileSystemId":"813097e6-cdb1-90e0-c8e1-83eee876e27a","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3169' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:16 GMT + - Wed, 19 Feb 2020 11:35:50 GMT expires: - '-1' pragma: @@ -1904,38 +1948,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -a -p -v + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?api-version=2019-08-01 cache-control: - no-cache content-length: - - '0' + - '642' + content-type: + - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:20 GMT + - Wed, 19 Feb 2020 11:36:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?api-version=2019-08-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1944,15 +1983,1427 @@ 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: 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 --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:36:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:37:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:37:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:38:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Creating","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:38:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8696d3dc-c837-412f-be60-1b5d7b46475e","name":"8696d3dc-c837-412f-be60-1b5d7b46475e","status":"Succeeded","startTime":"2020-02-19T11:25:38.2544158Z","endTime":"2020-02-19T11:39:17.9157968Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:39:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A39%3A17.7401332Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","fileSystemId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_b53c0196","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1615' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:39:26 GMT + etag: + - W/"datetime'2020-02-19T11%3A39%3A17.7401332Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "westus2stage", "tags": {"Tag1": "Value1"}, "properties": + {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '428' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A39%3A34.4998822Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '972' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:39:35 GMT + etag: + - W/"datetime'2020-02-19T11%3A39%3A34.4998822Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f","name":"bc378c0a-3892-454a-ac6f-1c941946db3f","status":"Creating","startTime":"2020-02-19T11:39:34.0765349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f","name":"bc378c0a-3892-454a-ac6f-1c941946db3f","status":"Creating","startTime":"2020-02-19T11:39:34.0765349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:40:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bc378c0a-3892-454a-ac6f-1c941946db3f","name":"bc378c0a-3892-454a-ac6f-1c941946db3f","status":"Succeeded","startTime":"2020-02-19T11:39:34.0765349Z","endTime":"2020-02-19T11:40:46.3953618Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:41:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A40%3A46.2092654Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_b53c0196","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1615' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:41:08 GMT + etag: + - W/"datetime'2020-02-19T11%3A40%3A46.2092654Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A39%3A17.7401332Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","fileSystemId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"ff65e5ca-c913-95fa-0d39-6d60abd3378b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_b53c0196","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A40%3A46.2092654Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_b53c0196","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true}}]}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '3243' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:41:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 + response: + body: + string: '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 19 Feb 2020 11:41:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '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: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:41:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:42:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:42: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: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:43:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:43:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:44:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:44:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:45:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:45:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:46:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:46:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Feb 2020 11:47:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK - request: body: null headers: @@ -1967,24 +3418,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27","name":"0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27","status":"Deleting","startTime":"2020-02-07T17:00:20.6657796Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Deleting","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:52 GMT + - Wed, 19 Feb 2020 11:47:53 GMT expires: - '-1' pragma: @@ -2020,24 +3471,24 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27","name":"0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27","status":"Succeeded","startTime":"2020-02-07T17:00:20.6657796Z","endTime":"2020-02-07T17:01:22.5333661Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a02d527d-ff26-46bc-bee4-ad174df25fb1","name":"a02d527d-ff26-46bc-bee4-ad174df25fb1","status":"Succeeded","startTime":"2020-02-19T11:41:15.0721144Z","endTime":"2020-02-19T11:48:10.5685831Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:01:22 GMT + - Wed, 19 Feb 2020 11:48:23 GMT expires: - '-1' pragma: @@ -2073,26 +3524,26 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A59%3A55.0178137Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_82f2802c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f647c1e9-f031-9651-62b7-1905b030e799","fileSystemId":"f647c1e9-f031-9651-62b7-1905b030e799","startIp":"10.0.0.5","endIp":"10.0.0.5","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.5"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A40%3A46.2092654Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"9c55ab92-3c30-97ef-d1e0-096f61ffe817","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_b53c0196","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1590' + - '1627' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:01:26 GMT + - Wed, 19 Feb 2020 11:48:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml new file mode 100644 index 00000000000..3d65fe63f15 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml @@ -0,0 +1,15817 @@ +interactions: +- request: + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ + ,\r\n \"etag\": \"W/\\\"1b91e814-ab2c-4272-922a-b50b2618c9ef\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da139ba6-f289-43f0-8fdd-be332daf0744?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 63a2005e-4ab9-440e-8e10-7ab7d24e05cb + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da139ba6-f289-43f0-8fdd-be332daf0744?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a33e6ddb-92cd-4059-937a-fceef67fcf91 + 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-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ + ,\r\n \"etag\": \"W/\\\"a61d523c-c056-49a9-8d18-98ae7aa087ac\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:52 GMT + etag: + - W/"a61d523c-c056-49a9-8d18-98ae7aa087ac" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c471f2f6-5520-4521-8259-9fb8a6c53e8f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ + ,\r\n \"etag\": \"W/\\\"a61d523c-c056-49a9-8d18-98ae7aa087ac\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:53 GMT + etag: + - W/"a61d523c-c056-49a9-8d18-98ae7aa087ac" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b4a8bb94-ac26-485a-9a8b-b47bcbc94c89 + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000009"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '633' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ + ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000009\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"d7760773-9523-46b0-b577-d92355cf1670\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2dcdb51b-d6ce-42ea-8a98-43e01e481b53?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '2391' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bf4a6336-29f3-4339-84e2-dfcd131846c1 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2dcdb51b-d6ce-42ea-8a98-43e01e481b53?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5c36831-d825-45e4-b96e-47417efbe04d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000008\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008\"\ + ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"631ce559-2e6c-457b-b42b-bff8d40ca8dd\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000009\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"bc436e52-8c4e-4e28-be83-fa91d2b0fabd\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2393' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:04:58 GMT + etag: + - W/"bc436e52-8c4e-4e28-be83-fa91d2b0fabd" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c9d195b2-8cc7-4056-8be8-4f1b83c7c301 + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"location": "westus2stage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '28' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A05%3A07.623987Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a00d83a-d526-4d8d-a9cc-01410e78e27c?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '456' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:05:08 GMT + etag: + - W/"datetime'2020-02-07T09%3A05%3A07.623987Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a00d83a-d526-4d8d-a9cc-01410e78e27c?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4a00d83a-d526-4d8d-a9cc-01410e78e27c","name":"4a00d83a-d526-4d8d-a9cc-01410e78e27c","status":"Succeeded","startTime":"2020-02-07T09:05:06.7917426Z","endTime":"2020-02-07T09:05:08.5587184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '581' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:05: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 account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A05%3A08.4527959Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '458' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:05:39 GMT + etag: + - W/"datetime'2020-02-07T09%3A05%3A08.4527959Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "westus2stage", "properties": {"serviceLevel": + "Premium", "size": 4398046511104}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '94' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004","name":"cli-acc-000002/cli-pool-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A05%3A47.5508595Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a69039-b47d-4717-acfc-5ca1411bae3b?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:05:48 GMT + etag: + - W/"datetime'2020-02-07T09%3A05%3A47.5508595Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a69039-b47d-4717-acfc-5ca1411bae3b?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/63a69039-b47d-4717-acfc-5ca1411bae3b","name":"63a69039-b47d-4717-acfc-5ca1411bae3b","status":"Succeeded","startTime":"2020-02-07T09:05:46.993573Z","endTime":"2020-02-07T09:05:48.7573508Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '619' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004","name":"cli-acc-000002/cli-pool-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A05%3A48.6529349Z''\"","location":"westus2stage","properties":{"poolId":"b6481bc2-3d87-5736-f01c-311bfad475ef","name":"cli-acc-000002/cli-pool-000004","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '655' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:06:20 GMT + etag: + - W/"datetime'2020-02-07T09%3A05%3A48.6529349Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": {"usageThreshold": 107374182400, "subnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009", + "serviceLevel": "Premium", "creationToken": "cli-vol-000006"}, "location": "westus2stage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","name":"cli-acc-000002/cli-pool-000004/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A06%3A28.4027512Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009","provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '915' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:06:28 GMT + etag: + - W/"datetime'2020-02-07T09%3A06%3A28.4027512Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:07:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:07:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:08:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:09:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Creating","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '642' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:09:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/19f8b65d-731d-40d2-ae35-133ce37cada2","name":"19f8b65d-731d-40d2-ae35-133ce37cada2","status":"Succeeded","startTime":"2020-02-07T09:06:27.8160019Z","endTime":"2020-02-07T09:10:09.3808401Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","name":"cli-acc-000002/cli-pool-000004/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A10%3A09.1833359Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_8d6d1264","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000008/subnets/cli-subnet-000009","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","fileSystemId":"e12a8893-e95c-dcb2-b418-28bee02b8cfd","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1558' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:23 GMT + etag: + - W/"datetime'2020-02-07T09%3A10%3A09.1833359Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --subscription -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-000012?api-version=2019-07-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012","name":"cli-rg-000012","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '253' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:28 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": "southcentralus", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.1.0.0/16"]}}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '131' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"ca0bded0-9f2a-4997-b9a2-d362872be2b6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cdad3bc-c263-40df-bfe3-6fce31b49328?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fd024e45-eeb1-4c40-bf50-5946fe7292be + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cdad3bc-c263-40df-bfe3-6fce31b49328?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 321a9b88-f059-4de6-86aa-1de0883d2e1b + 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-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"960f4465-8fa4-4598-b877-1d9a805c6f7a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '762' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:36 GMT + etag: + - W/"960f4465-8fa4-4598-b877-1d9a805c6f7a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 885f7a58-8a1d-482e-8d9c-f55d29800bdc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"960f4465-8fa4-4598-b877-1d9a805c6f7a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '762' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:37 GMT + etag: + - W/"960f4465-8fa4-4598-b877-1d9a805c6f7a" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7ac76ba5-21b3-45f7-9ff2-aa80e3322ad3 + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010", + "location": "southcentralus", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.1.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000011"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.1.0.0/16"]}}, "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '589' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000011\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"eb0de45a-42c9-41ce-a832-e5e384d0ade7\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1de2b58-35c9-49dc-a558-4474d81451f4?api-version=2019-11-01 + cache-control: + - no-cache + content-length: + - '2245' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d6903cc5-d61c-49ce-aa30-d14e9aba5baf + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1de2b58-35c9-49dc-a558-4474d81451f4?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 844d0ebc-269c-4fd1-8c31-41d9c1513961 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010?api-version=2019-11-01 + response: + body: + string: !!python/unicode "{\r\n \"name\": \"cli-vnet-000010\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"bfa119c9-676f-454a-a2e6-9fc726c4af53\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000011\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"7ca4daf9-687c-4eea-a877-b7e4806593f5\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2247' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:10:59 GMT + etag: + - W/"7ca4daf9-687c-4eea-a877-b7e4806593f5" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 70d23a74-3833-4ea3-87dc-07a49a09c59a + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A11%3A03.0532019Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000003","provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '413' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:11:03 GMT + etag: + - W/"datetime'2020-02-07T09%3A11%3A03.0532019Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdfe9288-b031-4c8a-886a-44f2b6037e91","name":"fdfe9288-b031-4c8a-886a-44f2b6037e91","status":"Succeeded","startTime":"2020-02-07T09:11:02.8819675Z","endTime":"2020-02-07T09:11:03.2101482Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '537' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:11:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T09%3A11%3A03.2163162Z''\"","location":"southcentralusstage","properties":{"name":"cli-acc-000003","provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '414' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:11:34 GMT + etag: + - W/"datetime'2020-02-07T09%3A11%3A03.2163162Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "southcentralusstage", "properties": {"serviceLevel": + "Premium", "size": 4398046511104}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '101' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A11%3A39.6248213Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64bfb848-e036-4c5d-b67a-5524d3204a3f?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '503' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:11:40 GMT + etag: + - W/"datetime'2020-02-07T09%3A11%3A39.6248213Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64bfb848-e036-4c5d-b67a-5524d3204a3f?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64bfb848-e036-4c5d-b67a-5524d3204a3f","name":"64bfb848-e036-4c5d-b67a-5524d3204a3f","status":"Succeeded","startTime":"2020-02-07T09:11:39.5054194Z","endTime":"2020-02-07T09:11:39.97416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:12:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A11%3A39.9750684Z''\"","location":"southcentralusstage","properties":{"poolId":"9965bfe8-576d-efc2-42d3-c3da24348092","name":"cli-acc-000003/cli-pool-000005","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '611' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:12:11 GMT + etag: + - W/"datetime'2020-02-07T09%3A11%3A39.9750684Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011", + "creationToken": "cli-vol-000007", "usageThreshold": 107374182400, "volumeType": + "DataProtection", "serviceLevel": "Premium", "dataProtection": {"replication": + {"replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006", + "endpointType": "dst"}}}, "location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '797' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A12%3A18.5762403Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}},"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011","provisioningState":"Creating"}}' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '1251' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:12:23 GMT + etag: + - W/"datetime'2020-02-07T09%3A12%3A18.5762403Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:12:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:13:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:13:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:14:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:14:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:15:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:16:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Creating","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '598' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:16:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd3a96c1-ac28-4ebf-a861-c19df1ae466a","name":"fd3a96c1-ac28-4ebf-a861-c19df1ae466a","status":"Succeeded","startTime":"2020-02-07T09:12:18.5126627Z","endTime":"2020-02-07T09:17:23.5875534Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '609' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:28 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type + --replication-schedule --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T09%3A17%3A23.5812839Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"71227596-797f-e203-41b4-cad39918ddc9","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"da17d2e8-393b-5bb5-3057-15f31335a59b","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_4fd61e81","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.Network/virtualNetworks/cli-vnet-000010/subnets/cli-subnet-000011","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"da17d2e8-393b-5bb5-3057-15f31335a59b","fileSystemId":"da17d2e8-393b-5bb5-3057-15f31335a59b","startIp":"10.1.0.11","endIp":"10.1.0.11","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.11"}],"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1988' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:28 GMT + etag: + - W/"datetime'2020-02-07T09%3A17%3A23.5812839Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: !!python/unicode '{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication approve + Connection: + - keep-alive + Content-Length: + - '260' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -p -v --remote-volume-resource-id + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006/authorizeReplication?api-version=2019-10-01 + response: + body: + string: !!python/unicode '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ce9d2451-1be5-4cfd-a44b-0f47ab18e4ee?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:17:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ce9d2451-1be5-4cfd-a44b-0f47ab18e4ee?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:17:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:39 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:18:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":false,"relationshipStatus":"","mirrorState":"","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '95' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication pause + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/breakReplication?api-version=2019-10-01 + response: + body: + string: !!python/unicode '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e9cb160a-8be1-49ea-9de1-870ecaa10c55?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:19:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e9cb160a-8be1-49ea-9de1-870ecaa10c55?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '104' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication resume + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/resyncReplication?api-version=2019-10-01 + response: + body: + string: !!python/unicode '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d3c290c7-44fb-441c-a122-a68845da9601?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:19:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d3c290c7-44fb-441c-a122-a68845da9601?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:28 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:45 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:57 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:19:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:45 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:47 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:54 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:21:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:47 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:22:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:52 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:23:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:49 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication pause + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/breakReplication?api-version=2019-10-01 + response: + body: + string: !!python/unicode '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f141f43-0e3b-42af-859a-2836bfee2696?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:24:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7f141f43-0e3b-42af-859a-2836bfee2696?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:24:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:23 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:39 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:48 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:56 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:25:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:09 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:22 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:29 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:35 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication status + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/replicationStatus?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"","errorMessage":""}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '104' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:26:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication remove + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000012/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/deleteReplication?api-version=2019-10-01 + response: + body: + string: !!python/unicode '' + headers: + access-control-expose-headers: + - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a821261a-2a18-474f-9a50-051a6dfedb75?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:26:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a821261a-2a18-474f-9a50-051a6dfedb75?api-version=2019-10-01&operationResultResponseType=Location + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +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 554d1a7ece9..2818332eaf8 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A36.727975Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A53.9352916Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672cfe4-0220-40f7-9b4e-b65c1e41ab5f?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa44139a-36fd-4bfa-9e99-3258b230f20b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '451' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:08:37 GMT + - Thu, 20 Feb 2020 15:23:53 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.727975Z'" + - W/"datetime'2020-02-20T15%3A23%3A53.9352916Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672cfe4-0220-40f7-9b4e-b65c1e41ab5f?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa44139a-36fd-4bfa-9e99-3258b230f20b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6672cfe4-0220-40f7-9b4e-b65c1e41ab5f","name":"6672cfe4-0220-40f7-9b4e-b65c1e41ab5f","status":"Succeeded","startTime":"2019-11-15T15:08:36.6683098Z","endTime":"2019-11-15T15:08:36.7958962Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa44139a-36fd-4bfa-9e99-3258b230f20b","name":"fa44139a-36fd-4bfa-9e99-3258b230f20b","status":"Succeeded","startTime":"2020-02-20T15:23:53.4415048Z","endTime":"2020-02-20T15:23:54.7615816Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:08 GMT + - Thu, 20 Feb 2020 15:24:25 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A36.7920206Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A54.6539689Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:08 GMT + - Thu, 20 Feb 2020 15:24:26 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.7920206Z'" + - W/"datetime'2020-02-20T15%3A23%3A54.6539689Z'" expires: - '-1' pragma: @@ -182,28 +182,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A08%3A36.7920206Z''\"","location":"westus2","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A23%3A54.6539689Z''\"","location":"westus2stage","properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:10 GMT + - Thu, 20 Feb 2020 15:24:27 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.7920206Z'" + - W/"datetime'2020-02-20T15%3A23%3A54.6539689Z'" expires: - '-1' pragma: @@ -243,28 +243,28 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A09%3A13.052168Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A24%3A50.0670339Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '477' + - '483' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:12 GMT + - Thu, 20 Feb 2020 15:24:51 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.052168Z'" + - W/"datetime'2020-02-20T15%3A24%3A50.0670339Z'" expires: - '-1' pragma: @@ -282,7 +282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml index 6ecb78be4e4..3463063d25a 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,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -11,36 +11,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A12%3A24.7233476Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A51.3375094Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e03afc6-a723-4447-bea7-ec7a0a3a2b23?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67c11eda-69f8-447f-8b06-4e387596c2de?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:25 GMT + - Thu, 20 Feb 2020 15:35:50 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A24.7233476Z'" + - W/"datetime'2020-02-20T15%3A35%3A51.3375094Z'" expires: - '-1' pragma: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e03afc6-a723-4447-bea7-ec7a0a3a2b23?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67c11eda-69f8-447f-8b06-4e387596c2de?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e03afc6-a723-4447-bea7-ec7a0a3a2b23","name":"7e03afc6-a723-4447-bea7-ec7a0a3a2b23","status":"Succeeded","startTime":"2019-11-15T15:12:24.6693906Z","endTime":"2019-11-15T15:12:24.802577Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/67c11eda-69f8-447f-8b06-4e387596c2de","name":"67c11eda-69f8-447f-8b06-4e387596c2de","status":"Succeeded","startTime":"2020-02-20T15:35:50.8999964Z","endTime":"2020-02-20T15:35:52.0910241Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '575' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:54 GMT + - Thu, 20 Feb 2020 15:36:22 GMT expires: - '-1' pragma: @@ -127,26 +127,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-11-15T15%3A12%3A24.7913964Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-20T15%3A35%3A51.9941274Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:55 GMT + - Thu, 20 Feb 2020 15:36:22 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A24.7913964Z'" + - W/"datetime'2020-02-20T15%3A35%3A51.9941274Z'" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -181,36 +181,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A12%3A59.9123704Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A26.7567879Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e94ccd4-3e21-42d2-98e4-2fb1d311c84d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '547' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:00 GMT + - Thu, 20 Feb 2020 15:36:26 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A59.9123704Z'" + - W/"datetime'2020-02-20T15%3A36%3A26.7567879Z'" expires: - '-1' pragma: @@ -224,7 +224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -244,24 +244,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e94ccd4-3e21-42d2-98e4-2fb1d311c84d?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e94ccd4-3e21-42d2-98e4-2fb1d311c84d","name":"5e94ccd4-3e21-42d2-98e4-2fb1d311c84d","status":"Succeeded","startTime":"2019-11-15T15:12:59.8624193Z","endTime":"2019-11-15T15:13:00.2217692Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac","name":"e741dce7-4d0a-4b25-b80c-aa9fa5bb87ac","status":"Succeeded","startTime":"2020-02-20T15:36:26.3217224Z","endTime":"2020-02-20T15:36:27.708412Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:30 GMT + - Thu, 20 Feb 2020 15:36:57 GMT expires: - '-1' pragma: @@ -297,26 +297,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A13%3A00.210581Z''\"","location":"westus2","properties":{"poolId":"4c1a71a8-d588-c860-3bf5-579d8aceaca2","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A27.6075845Z''\"","location":"westus2stage","properties":{"poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '649' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:31 GMT + - Thu, 20 Feb 2020 15:36:58 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A00.210581Z'" + - W/"datetime'2020-02-20T15%3A36%3A27.6075845Z'" expires: - '-1' pragma: @@ -352,28 +352,28 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A13%3A00.210581Z''\"","location":"westus2","properties":{"poolId":"4c1a71a8-d588-c860-3bf5-579d8aceaca2","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A36%3A27.6075845Z''\"","location":"westus2stage","properties":{"poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '649' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:32 GMT + - Thu, 20 Feb 2020 15:37:01 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A00.210581Z'" + - W/"datetime'2020-02-20T15%3A36%3A27.6075845Z'" expires: - '-1' pragma: @@ -414,28 +414,28 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --service-level User-Agent: - - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-11-15T15%3A13%3A34.0246181Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"4c1a71a8-d588-c860-3bf5-579d8aceaca2","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-20T15%3A37%3A03.8045897Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"e2df1817-131c-81f1-5ecb-b37246f46d57","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '676' + - '681' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:34 GMT + - Thu, 20 Feb 2020 15:37:05 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A34.0246181Z'" + - W/"datetime'2020-02-20T15%3A37%3A03.8045897Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml index 367a1f2205a..38a576b28de 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -18,7 +18,7 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -26,18 +26,19 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"61a38541-c4c5-44a1-9e5c-ed1bcb1f662e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7f8a94d9-a014-4d89-961e-c53da92c5fd9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"c3674947-28d9-4a6c-9d26-7a0748f77ba4\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"6d750cb1-21dd-4fad-a7c4-b3613763cb59\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ed41ecb-2643-49c6-b873-17f15077afa8?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aa92d49d-bb62-43d8-b8d5-10ef39a8549e?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -45,7 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:31 GMT + - Wed, 19 Feb 2020 11:49:01 GMT expires: - '-1' pragma: @@ -58,9 +59,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bee81f02-7f10-46d7-9186-311dd36ee23e + - 0fb5cd88-2c37-4555-978e-01cd38337b1d x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -78,10 +79,10 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9ed41ecb-2643-49c6-b873-17f15077afa8?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aa92d49d-bb62-43d8-b8d5-10ef39a8549e?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -93,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:36 GMT + - Wed, 19 Feb 2020 11:49:05 GMT expires: - '-1' pragma: @@ -110,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73fc2736-08da-4b53-86fd-a7f9055eec0d + - a1edc9f5-2565-4a8c-af74-3ec17f9032aa status: code: 200 message: OK @@ -128,21 +129,22 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"946388cf-9a57-4f1e-b173-d7a4b1b0948b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f8a94d9-a014-4d89-961e-c53da92c5fd9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"f10fe759-a7c6-427c-afdf-ac770370cf08\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6d750cb1-21dd-4fad-a7c4-b3613763cb59\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -151,9 +153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:36 GMT + - Wed, 19 Feb 2020 11:49:05 GMT etag: - - W/"946388cf-9a57-4f1e-b173-d7a4b1b0948b" + - W/"f10fe759-a7c6-427c-afdf-ac770370cf08" expires: - '-1' pragma: @@ -170,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 87673263-c384-4a8e-8520-095f4e873a32 + - e28c7bf2-b185-4e36-a94f-003981a3b0f2 status: code: 200 message: OK @@ -188,7 +190,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -196,15 +198,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"946388cf-9a57-4f1e-b173-d7a4b1b0948b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f8a94d9-a014-4d89-961e-c53da92c5fd9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"f10fe759-a7c6-427c-afdf-ac770370cf08\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6d750cb1-21dd-4fad-a7c4-b3613763cb59\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ + \ [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -213,9 +216,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:37 GMT + - Wed, 19 Feb 2020 11:49:06 GMT etag: - - W/"946388cf-9a57-4f1e-b173-d7a4b1b0948b" + - W/"f10fe759-a7c6-427c-afdf-ac770370cf08" expires: - '-1' pragma: @@ -232,7 +235,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - acdf0781-1c06-4e72-9d2c-3cb787d26a7b + - a7167424-d93a-41fc-a533-8d7f68bbb35f status: code: 200 message: OK @@ -260,7 +263,7 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US @@ -268,34 +271,35 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"8ff23954-11b8-4dd0-97d0-973853437f1e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7f8a94d9-a014-4d89-961e-c53da92c5fd9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"8ff23954-11b8-4dd0-97d0-973853437f1e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"8ff23954-11b8-4dd0-97d0-973853437f1e\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"a881e905-87a3-4aba-a2ec-8a954f280a0f\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"6d750cb1-21dd-4fad-a7c4-b3613763cb59\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"a881e905-87a3-4aba-a2ec-8a954f280a0f\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"a881e905-87a3-4aba-a2ec-8a954f280a0f\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2d7b297b-e50d-4341-b6e2-581c7c09ae3e?api-version=2019-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/10a8423e-694c-421a-a309-4f1e9f0cf2be?api-version=2019-11-01 cache-control: - no-cache content-length: @@ -303,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:37 GMT + - Wed, 19 Feb 2020 11:49:07 GMT expires: - '-1' pragma: @@ -320,9 +324,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f64a8bc7-3d60-4f43-98b6-ee66f532b536 + - 2dfc4543-c130-4ff8-a9d3-b941378daee3 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -340,10 +344,10 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2d7b297b-e50d-4341-b6e2-581c7c09ae3e?api-version=2019-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/10a8423e-694c-421a-a309-4f1e9f0cf2be?api-version=2019-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -355,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:42 GMT + - Wed, 19 Feb 2020 11:49:12 GMT expires: - '-1' pragma: @@ -372,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a8943b2-31b7-4d7a-be5a-a1b84334e078 + - 35aaeca2-e9a6-4e81-93d1-24900ae428e4 status: code: 200 message: OK @@ -390,37 +394,38 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 azure-mgmt-network/9.0.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c33d16da-e0a8-4a5f-b2ad-ac985fa9bc68\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7f8a94d9-a014-4d89-961e-c53da92c5fd9\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"c33d16da-e0a8-4a5f-b2ad-ac985fa9bc68\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"c33d16da-e0a8-4a5f-b2ad-ac985fa9bc68\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n - \ \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"34c84b64-ee20-4ad7-95f0-7193080bcf02\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6d750cb1-21dd-4fad-a7c4-b3613763cb59\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ + ,\r\n \"etag\": \"W/\\\"34c84b64-ee20-4ad7-95f0-7193080bcf02\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [\r\n {\r\n \"name\": \"0\",\r\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"34c84b64-ee20-4ad7-95f0-7193080bcf02\\\ + \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ + ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ + ,\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + \r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\ + \r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\ + ,\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n\ + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache @@ -429,9 +434,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:42 GMT + - Wed, 19 Feb 2020 11:49:12 GMT etag: - - W/"c33d16da-e0a8-4a5f-b2ad-ac985fa9bc68" + - W/"34c84b64-ee20-4ad7-95f0-7193080bcf02" expires: - '-1' pragma: @@ -448,12 +453,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9399a436-e94d-4be8-9b6e-8d7c15db6097 + - 6cc3a7ec-9067-4cfa-b6a4-bc2bb4b66304 status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westus2stage"}' headers: Accept: - application/json @@ -464,36 +469,36 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '28' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A18%3A47.0634258Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A49%3A19.1851555Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeffe509-de68-4b44-ab4c-b3628a2e6e8e?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/193560e7-821b-4059-999a-efd105fcbba4?api-version=2019-10-01 cache-control: - no-cache content-length: - - '452' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:47 GMT + - Wed, 19 Feb 2020 11:49:20 GMT etag: - - W/"datetime'2020-02-07T16%3A18%3A47.0634258Z'" + - W/"datetime'2020-02-19T11%3A49%3A19.1851555Z'" expires: - '-1' pragma: @@ -507,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -527,24 +532,24 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeffe509-de68-4b44-ab4c-b3628a2e6e8e?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/193560e7-821b-4059-999a-efd105fcbba4?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeffe509-de68-4b44-ab4c-b3628a2e6e8e","name":"aeffe509-de68-4b44-ab4c-b3628a2e6e8e","status":"Succeeded","startTime":"2020-02-07T16:18:46.9722243Z","endTime":"2020-02-07T16:18:47.1130964Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/193560e7-821b-4059-999a-efd105fcbba4","name":"193560e7-821b-4059-999a-efd105fcbba4","status":"Succeeded","startTime":"2020-02-19T11:49:18.689781Z","endTime":"2020-02-19T11:49:19.952601Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:17 GMT + - Wed, 19 Feb 2020 11:50:10 GMT expires: - '-1' pragma: @@ -580,26 +585,26 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-07T16%3A18%3A47.1354774Z''\"","location":"westus2","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-19T11%3A49%3A19.8437706Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '458' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:18 GMT + - Wed, 19 Feb 2020 11:50:11 GMT etag: - - W/"datetime'2020-02-07T16%3A18%3A47.1354774Z'" + - W/"datetime'2020-02-19T11%3A49%3A19.8437706Z'" expires: - '-1' pragma: @@ -622,7 +627,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -634,36 +639,36 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '94' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A19%3A23.9293973Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A50%3A18.595814Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a52b428-1442-4f3d-8430-3ba2c7b82d45?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02c5e90a-40ff-435e-81d6-f38ca23c319d?api-version=2019-10-01 cache-control: - no-cache content-length: - - '542' + - '546' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:24 GMT + - Wed, 19 Feb 2020 11:50:19 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A23.9293973Z'" + - W/"datetime'2020-02-19T11%3A50%3A18.595814Z'" expires: - '-1' pragma: @@ -677,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +702,24 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a52b428-1442-4f3d-8430-3ba2c7b82d45?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02c5e90a-40ff-435e-81d6-f38ca23c319d?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a52b428-1442-4f3d-8430-3ba2c7b82d45","name":"1a52b428-1442-4f3d-8430-3ba2c7b82d45","status":"Succeeded","startTime":"2020-02-07T16:19:23.8376144Z","endTime":"2020-02-07T16:19:24.1970465Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02c5e90a-40ff-435e-81d6-f38ca23c319d","name":"02c5e90a-40ff-435e-81d6-f38ca23c319d","status":"Succeeded","startTime":"2020-02-19T11:50:18.074083Z","endTime":"2020-02-19T11:50:19.6646118Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '615' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:56 GMT + - Wed, 19 Feb 2020 11:50:51 GMT expires: - '-1' pragma: @@ -750,26 +755,26 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T16%3A19%3A24.1955851Z''\"","location":"westus2","properties":{"poolId":"5054cb1b-04b6-f950-ae62-7c3d060f435d","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-19T11%3A50%3A19.5547089Z''\"","location":"westus2stage","properties":{"poolId":"5f99f103-8850-318c-c37c-4a80c6afc14a","name":"cli-acc-000002/cli-pool-000003","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '650' + - '655' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:19:56 GMT + - Wed, 19 Feb 2020 11:50:51 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A24.1955851Z'" + - W/"datetime'2020-02-19T11%3A50%3A19.5547089Z'" expires: - '-1' pragma: @@ -792,7 +797,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", + body: 'b''{"location": "westus2stage", "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' headers: Accept: @@ -804,37 +809,37 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '400' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A19%3A59.9617825Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A50%3A59.3679214Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '947' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:00 GMT + - Wed, 19 Feb 2020 11:51:00 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A59.9617825Z'" + - W/"datetime'2020-02-19T11%3A50%3A59.3679214Z'" expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -869,780 +874,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:20:33 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:21:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:21:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:22:04 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:22:35 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:23:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:23:36 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:24:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:24:38 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:25:08 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:25:39 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:26:09 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:26:40 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-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: - - Fri, 07 Feb 2020 16:27:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:27:42 GMT + - Wed, 19 Feb 2020 11:51:32 GMT expires: - '-1' pragma: @@ -1679,24 +928,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:13 GMT + - Wed, 19 Feb 2020 11:52:02 GMT expires: - '-1' pragma: @@ -1733,24 +982,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:44 GMT + - Wed, 19 Feb 2020 11:52:32 GMT expires: - '-1' pragma: @@ -1787,24 +1036,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:29:15 GMT + - Wed, 19 Feb 2020 11:53:03 GMT expires: - '-1' pragma: @@ -1841,24 +1090,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:29:45 GMT + - Wed, 19 Feb 2020 11:53:35 GMT expires: - '-1' pragma: @@ -1895,24 +1144,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:30:15 GMT + - Wed, 19 Feb 2020 11:54:05 GMT expires: - '-1' pragma: @@ -1949,24 +1198,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Creating","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Creating","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '642' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:30:47 GMT + - Wed, 19 Feb 2020 11:54:36 GMT expires: - '-1' pragma: @@ -2003,24 +1252,24 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7632dd27-e7a1-4789-9610-89364114ba08","name":"7632dd27-e7a1-4789-9610-89364114ba08","status":"Succeeded","startTime":"2020-02-07T16:19:59.8907729Z","endTime":"2020-02-07T16:31:04.6798407Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92f733c0-8265-4716-bd3f-1d6a4354acb7","name":"92f733c0-8265-4716-bd3f-1d6a4354acb7","status":"Succeeded","startTime":"2020-02-19T11:50:58.9277138Z","endTime":"2020-02-19T11:54:42.8465484Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '648' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:17 GMT + - Wed, 19 Feb 2020 11:55:06 GMT expires: - '-1' pragma: @@ -2057,26 +1306,26 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A31%3A04.7131728Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e659c226","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A54%3A42.6674904Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b47a2b19-85f4-3086-368f-c6c2685b6428","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_8b69e90c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1590' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:18 GMT + - Wed, 19 Feb 2020 11:55:07 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A04.7131728Z'" + - W/"datetime'2020-02-19T11%3A54%3A42.6674904Z'" expires: - '-1' pragma: @@ -2112,28 +1361,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A31%3A04.7131728Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e659c226","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A54%3A42.6674904Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b47a2b19-85f4-3086-368f-c6c2685b6428","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_8b69e90c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1590' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:21 GMT + - Wed, 19 Feb 2020 11:55:11 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A04.7131728Z'" + - W/"datetime'2020-02-19T11%3A54%3A42.6674904Z'" expires: - '-1' pragma: @@ -2174,28 +1423,28 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-netapp/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.6.4 (Darwin-19.2.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-Python AZURECLI/2.0.81 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-07T16%3A31%3A24.5051212Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_2ebb0649e26111e988286e573da70a0d_e659c226","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","fileSystemId":"e1a3a568-8fce-8610-3c5a-4bb35885c452","startIp":"10.0.0.4","endIp":"10.0.0.4","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-02-19T11%3A55%3A15.6094492Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b47a2b19-85f4-3086-368f-c6c2685b6428","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","startIp":"10.0.0.6","endIp":"10.0.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.6"}],"provisioningState":"Succeeded","fileSystemId":"b47a2b19-85f4-3086-368f-c6c2685b6428","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_8b69e90c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '1615' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:29 GMT + - Wed, 19 Feb 2020 11:55:21 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A24.5051212Z'" + - W/"datetime'2020-02-19T11%3A55%3A15.6094492Z'" expires: - '-1' pragma: 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 bcb5a23b6e2..327c79bbcd5 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 = "westus2" +LOCATION = "westus2stage" # No tidy up of tests required. The resource group is automatically removed @@ -83,7 +83,7 @@ def test_update_account(self): assert account['activeDirectories'] is None @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_account_') - def atest_active_directory(self): + def test_active_directory(self): account_name = self.create_random_name(prefix='cli', length=24) # create an account as normal 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 35bb3f0ff69..16b4644290f 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,14 +7,15 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "westus2" +RG_LOCATION = "westus2" +ANF_LOCATION = "westus2stage" # No tidy up of tests required. The resource group is automatically removed class AzureNetAppFilesMountTargetServiceScenarioTest(ScenarioTest): def setup_vnet(self, rg, vnet_name, subnet_name): - self.cmd("az network vnet create -n %s --resource-group %s -l %s" % (vnet_name, rg, LOCATION)) + self.cmd("az network vnet create -n %s --resource-group %s -l %s" % (vnet_name, rg, RG_LOCATION)) self.cmd("az network vnet subnet create -n %s --vnet-name %s --address-prefixes '10.0.0.0/24' --delegations 'Microsoft.Netapp/volumes' -g %s" % (subnet_name, vnet_name, rg)) def current_subscription(self): @@ -28,9 +29,9 @@ def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None): tag = "--tags %s" % tags if tags is not None else "" self.setup_vnet(rg, vnet_name, subnet_name) - 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 --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() + self.cmd("az netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, ANF_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, ANF_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 --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() return volume1 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 489ebc64044..ca93abb268f 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 = "westus2" +LOCATION = "westus2stage" # 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 36e43ab2ab1..aad8fe820ca 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,14 +7,15 @@ POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "westus2" +RG_LOCATION = "westus2" +ANF_LOCATION = "westus2stage" # No tidy up of tests required. The resource group is automatically removed class AzureNetAppFilesSnapshotServiceScenarioTest(ScenarioTest): def setup_vnet(self, rg, vnet_name, subnet_name): - self.cmd("az network vnet create -n %s --resource-group %s -l %s --address-prefix 10.5.0.0/16" % (vnet_name, rg, LOCATION)) + self.cmd("az network vnet create -n %s --resource-group %s -l %s --address-prefix 10.5.0.0/16" % (vnet_name, rg, RG_LOCATION)) self.cmd("az network vnet subnet create -n %s --vnet-name %s --address-prefixes '10.5.0.0/24' --delegations 'Microsoft.Netapp/volumes' -g %s" % (subnet_name, vnet_name, rg)) def current_subscription(self): @@ -29,9 +30,9 @@ def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None): tag = "--tags %s" % tags if tags is not None else "" self.setup_vnet(rg, vnet_name, subnet_name) - self.cmd("netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, LOCATION)).get_output_in_json() - self.cmd("netappfiles pool create -g %s -a %s -p %s -l %s %s %s" % (rg, account_name, pool_name, LOCATION, POOL_DEFAULT, tag)).get_output_in_json() - volume1 = self.cmd("netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() + self.cmd("netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, ANF_LOCATION)).get_output_in_json() + self.cmd("netappfiles pool create -g %s -a %s -p %s -l %s %s %s" % (rg, account_name, pool_name, ANF_LOCATION, POOL_DEFAULT, tag)).get_output_in_json() + volume1 = self.cmd("netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tag)).get_output_in_json() return volume1 @@ -44,7 +45,7 @@ def test_create_delete_snapshots(self): rg = '{rg}' volume = self.create_volume(account_name, pool_name, volume_name, rg) - snapshot = self.cmd("az netappfiles snapshot create -g %s -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (rg, account_name, pool_name, volume_name, snapshot_name, LOCATION, volume['fileSystemId'])).get_output_in_json() + snapshot = self.cmd("az netappfiles snapshot create -g %s -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (rg, account_name, pool_name, volume_name, snapshot_name, ANF_LOCATION, volume['fileSystemId'])).get_output_in_json() assert snapshot['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name # check the created fields is populated. Checking exact dates are a little harder due to session records assert snapshot['created'] is not None @@ -64,8 +65,8 @@ def test_list_snapshots(self): snapshot_name1 = self.create_random_name(prefix='cli-sn-', length=24) snapshot_name2 = self.create_random_name(prefix='cli-sn-', length=24) volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') - self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name1, LOCATION, volume['fileSystemId'])).get_output_in_json() - self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name2, LOCATION, volume['fileSystemId'])).get_output_in_json() + self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name1, ANF_LOCATION, volume['fileSystemId'])).get_output_in_json() + self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name2, ANF_LOCATION, volume['fileSystemId'])).get_output_in_json() snapshot_list = self.cmd("az netappfiles snapshot list -g {rg} -a %s -p %s -v %s" % (account_name, pool_name, volume_name)).get_output_in_json() assert len(snapshot_list) == 2 @@ -77,7 +78,7 @@ def test_get_snapshot(self): volume_name = self.create_random_name(prefix='cli-vol-', length=24) snapshot_name = self.create_random_name(prefix='cli-sn-', length=24) volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') - snapshot = self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name, LOCATION, volume['fileSystemId'])).get_output_in_json() + snapshot = self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s --file-system-id %s" % (account_name, pool_name, volume_name, snapshot_name, ANF_LOCATION, volume['fileSystemId'])).get_output_in_json() snapshot = self.cmd("az netappfiles snapshot show -g {rg} -a %s -p %s -v %s -s %s" % (account_name, pool_name, volume_name, snapshot_name)).get_output_in_json() assert snapshot['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name 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 8ae62b5610c..1b5150ad568 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 @@ -4,18 +4,22 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer +import time POOL_DEFAULT = "--service-level 'Premium' --size 4" VOLUME_DEFAULT = "--service-level 'Premium' --usage-threshold 100" -LOCATION = "westus2" +RG_LOCATION = "westus2" +ANF_LOCATION = "westus2stage" +DP_RG_LOCATION = "southcentralus" +DP_ANF_LOCATION = "southcentralusstage" GIB_SCALE = 1024 * 1024 * 1024 # No tidy up of tests required. The resource group is automatically removed class AzureNetAppFilesVolumeServiceScenarioTest(ScenarioTest): - def setup_vnet(self, rg, vnet_name, subnet_name, ip_pre): - self.cmd("az network vnet create -n %s --resource-group %s -l %s --address-prefix %s/16" % (vnet_name, rg, LOCATION, ip_pre)) + def setup_vnet(self, rg, vnet_name, subnet_name, ip_pre, location): + self.cmd("az network vnet create -n %s --resource-group %s -l %s --address-prefix %s/16" % (vnet_name, rg, location, ip_pre)) self.cmd("az network vnet subnet create -n %s -g %s --vnet-name %s --address-prefixes '%s/24' --delegations 'Microsoft.Netapp/volumes'" % (subnet_name, rg, vnet_name, ip_pre)) def current_subscription(self): @@ -29,17 +33,25 @@ def create_volume(self, account_name, pool_name, volume_name1, rg, tags=None, vo 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.0.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_payload, 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 --file-path %s --vnet %s --subnet %s %s %s" % (rg, account_name, pool_name, volume_name1, LOCATION, volume_payload, file_path, vnet_name, subnet_name, protocol_types, tag)).get_output_in_json() + self.setup_vnet(rg, vnet_name, subnet_name, '10.0.0.0', RG_LOCATION) + self.cmd("az netappfiles account create -g %s -a '%s' -l %s" % (rg, account_name, ANF_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, ANF_LOCATION, pool_payload, 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 --file-path %s --vnet %s --subnet %s %s %s" % (rg, account_name, pool_name, volume_name1, ANF_LOCATION, volume_payload, file_path, vnet_name, subnet_name, protocol_types, tag)).get_output_in_json() if volume_name2: file_path = volume_name2 - self.cmd("az netappfiles volume create -g %s -a %s -p %s -v %s -l %s %s --file-path %s --vnet %s --subnet %s --tags %s" % (rg, account_name, pool_name, volume_name2, LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tags)).get_output_in_json() + self.cmd("az netappfiles volume create -g %s -a %s -p %s -v %s -l %s %s --file-path %s --vnet %s --subnet %s --tags %s" % (rg, account_name, pool_name, volume_name2, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_name, tags)).get_output_in_json() return volume1 + def wait_for_replication_status(self, target_state, rg_r, account_name_r, pool_name_r, volume_name_r): + # python isn't good at do-while loops but loop until we get the target state + while True: + replication_status = self.cmd("az netappfiles volume replication status -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)).get_output_in_json() + if (replication_status['mirrorState'] == target_state): + break + time.sleep(1) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') def test_create_delete_volumes(self): account_name = self.create_random_name(prefix='cli-acc-', length=24) @@ -84,21 +96,75 @@ def test_create_volume_with_subnet_in_different_rg(self): subnet_rg = self.create_random_name(prefix='cli-rg-', length=24) subs_id = self.current_subscription() - self.cmd("az group create -n %s --subscription %s -l %s" % (subnet_rg, subs_id, LOCATION)).get_output_in_json() + self.cmd("az group create -n %s --subscription %s -l %s" % (subnet_rg, subs_id, RG_LOCATION)).get_output_in_json() rg = '{rg}' - self.setup_vnet(subnet_rg, vnet_name, subnet_name, '10.0.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" % (rg, account_name, pool_name, LOCATION, POOL_DEFAULT)).get_output_in_json() + self.setup_vnet(subnet_rg, vnet_name, subnet_name, '10.0.0.0', RG_LOCATION) + self.cmd("az netappfiles account create -g %s -a %s -l %s" % (rg, account_name, ANF_LOCATION)).get_output_in_json() + self.cmd("az netappfiles pool create -g %s -a %s -p %s -l %s %s" % (rg, account_name, pool_name, ANF_LOCATION, POOL_DEFAULT)).get_output_in_json() subnet_id = "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Network/virtualNetworks/%s/subnets/%s" % (subs_id, subnet_rg, vnet_name, subnet_name) - volume = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s" % (rg, account_name, pool_name, volume_name, LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_id)).get_output_in_json() + volume = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s" % (rg, account_name, pool_name, volume_name, ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_id)).get_output_in_json() assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name self.cmd("az netappfiles volume delete --resource-group %s --account-name %s --pool-name %s --volume-name %s" % (rg, account_name, pool_name, volume_name)) self.cmd("az group delete --yes -n %s" % (subnet_rg)) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') + def test_perform_replication(self): + # create source volume + account_name = self.create_random_name(prefix='cli-acc-', length=24) + account_name_r = self.create_random_name(prefix='cli-acc-', length=24) + pool_name = self.create_random_name(prefix='cli-pool-', length=24) + pool_name_r = self.create_random_name(prefix='cli-pool-', length=24) + volume_name = self.create_random_name(prefix='cli-vol-', length=24) + volume_name_r = self.create_random_name(prefix='cli-vol-', length=24) + + src_volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') + assert src_volume['id'] is not None + + # create destination volume in other region/rg and with its own vnet + vnet_name = self.create_random_name(prefix='cli-vnet-', length=24) + file_path = volume_name_r # creation_token + subnet_name = self.create_random_name(prefix='cli-subnet-', length=16) + rg_r = self.create_random_name(prefix='cli-rg-', length=24) + subs_id = self.current_subscription() + self.cmd("az group create -n %s --subscription %s -l %s" % (rg_r, subs_id, DP_RG_LOCATION)).get_output_in_json() + + self.setup_vnet(rg_r, vnet_name, subnet_name, '10.1.0.0', DP_RG_LOCATION) + self.cmd("az netappfiles account create -g %s -a %s -l %s" % (rg_r, account_name_r, DP_ANF_LOCATION)).get_output_in_json() + self.cmd("az netappfiles pool create -g %s -a %s -p %s -l %s %s" % (rg_r, account_name_r, pool_name_r, DP_ANF_LOCATION, POOL_DEFAULT)).get_output_in_json() + + subnet_id = "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Network/virtualNetworks/%s/subnets/%s" % (subs_id, rg_r, vnet_name, subnet_name) + + # volume = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s" % (rg_r, account_name_r, pool_name_r, volume_name_r, DP_ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_id)).get_output_in_json() + + dst_volume = self.cmd("az netappfiles volume create --resource-group %s --account-name %s --pool-name %s --volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s --volume-type %s --endpoint-type %s --replication-schedule %s --remote-volume-resource-id %s" % (rg_r, account_name_r, pool_name_r, volume_name_r, DP_ANF_LOCATION, VOLUME_DEFAULT, file_path, vnet_name, subnet_id, "DataProtection", "dst", "_10minutely", src_volume['id'])).get_output_in_json() + assert dst_volume['dataProtection'] is not None + assert dst_volume['id'] is not None + time.sleep(2) + + # approve + self.cmd("az netappfiles volume replication approve -g %s -a %s -p %s -v %s --remote-volume-resource-id %s" % ('{rg}', account_name, pool_name, volume_name, dst_volume['id'])) + self.wait_for_replication_status("Mirrored", rg_r, account_name_r, pool_name_r, volume_name_r) + + # break + self.cmd("az netappfiles volume replication suspend -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)) + self.wait_for_replication_status("Broken", rg_r, account_name_r, pool_name_r, volume_name_r) + + # resume + self.cmd("az netappfiles volume replication resume -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)) + self.wait_for_replication_status("Mirrored", rg_r, account_name_r, pool_name_r, volume_name_r) + + # break + self.cmd("az netappfiles volume replication suspend -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)) + self.wait_for_replication_status("Broken", rg_r, account_name_r, pool_name_r, volume_name_r) + + # delete + self.cmd("az netappfiles volume replication remove -g %s -a %s -p %s -v %s" % (rg_r, account_name_r, pool_name_r, volume_name_r)) + time.sleep(2) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') def test_list_volumes(self): account_name = self.create_random_name(prefix='cli-acc-', length=24) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 545105247e0..ee15697f95b 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -56,7 +56,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==1.1.1 azure-mgmt-monitor==0.7.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.7.0 +azure-mgmt-netapp==0.8.0 azure-mgmt-network==10.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 23069ab9429..18fc271d28f 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -56,7 +56,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==1.1.1 azure-mgmt-monitor==0.7.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.7.0 +azure-mgmt-netapp==0.8.0 azure-mgmt-network==10.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index e2a3c432d77..0f69d7bc460 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -55,7 +55,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==1.1.1 azure-mgmt-monitor==0.7.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.7.0 +azure-mgmt-netapp==0.8.0 azure-mgmt-network==10.0.0 azure-mgmt-nspkg==3.0.2 azure-mgmt-policyinsights==0.4.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index e9014cdb616..909fcc8bccd 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -100,7 +100,7 @@ 'azure-mgmt-media~=1.1,>=1.1.1', 'azure-mgmt-monitor~=0.7.0', 'azure-mgmt-msi~=0.2', - 'azure-mgmt-netapp~=0.7.0', + 'azure-mgmt-netapp~=0.8.0', 'azure-mgmt-network~=10.0.0', 'azure-mgmt-policyinsights~=0.4.0', 'azure-mgmt-privatedns~=0.1.0',