diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 4d64666d534..bc74d4ef916 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -87,6 +87,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..c53501b0514 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -338,6 +338,14 @@ 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 + - name: --volume-type + short-summary: Whether the volume should be a data protection volume ("DataProtection") + - 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" - 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 pause'] = """ +type: command +short-summary: Break a volume replication for the specified destination volume. The replication process is paused 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: Pause the replication process + text: > + az netappfiles volume replication pause -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 paused/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..000aacb230f 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('pause', '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..afba111122f 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A28%3A31.9170553Z''\"","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/1351549f-4b60-438c-8137-d5fd555a7e5a?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, 06 Feb 2020 08:28:32 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.3821043Z'" + - W/"datetime'2020-02-06T08%3A28%3A31.9170553Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-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/1351549f-4b60-438c-8137-d5fd555a7e5a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1351549f-4b60-438c-8137-d5fd555a7e5a","name":"1351549f-4b60-438c-8137-d5fd555a7e5a","status":"Succeeded","startTime":"2020-02-06T08:28:31.2404087Z","endTime":"2020-02-06T08:28:33.0539667Z","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, 06 Feb 2020 08:29:04 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A28%3A32.9160299Z''\"","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, 06 Feb 2020 08:29:04 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.5101958Z'" + - W/"datetime'2020-02-06T08%3A28%3A32.9160299Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A28%3A32.9160299Z''\"","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, 06 Feb 2020 08:29:06 GMT etag: - - W/"datetime'2019-07-24T15%3A24%3A32.5101958Z'" + - W/"datetime'2020-02-06T08%3A28%3A32.9160299Z'" expires: - '-1' pragma: @@ -245,28 +245,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A29%3A09.2224852Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"2a4e3257-4b75-551c-cc3d-e89695677e57","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, 06 Feb 2020 08:29:10 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.4010066Z'" + - W/"datetime'2020-02-06T08%3A29%3A09.2224852Z'" expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -304,28 +304,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A29%3A10.8951176Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"2a4e3257-4b75-551c-cc3d-e89695677e57","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, 06 Feb 2020 08:29:12 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.7132286Z'" + - W/"datetime'2020-02-06T08%3A29%3A10.8951176Z'" expires: - '-1' pragma: @@ -361,28 +361,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A29%3A10.8951176Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"2a4e3257-4b75-551c-cc3d-e89695677e57","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, 06 Feb 2020 08:29:14 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A07.7132286Z'" + - W/"datetime'2020-02-06T08%3A29%3A10.8951176Z'" expires: - '-1' pragma: @@ -406,7 +406,7 @@ interactions: message: OK - request: body: !!python/unicode '{"properties": {"activeDirectories": []}, "location": - "westcentralus", "tags": {"Tag1": "Value1"}}' + "westus2stage", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -417,34 +417,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A29%3A16.2603613Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"2a4e3257-4b75-551c-cc3d-e89695677e57","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/c0e309af-51e7-4e3a-bbca-f4cf950b5f6a?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, 06 Feb 2020 08:29:16 GMT etag: - - W/"datetime'2019-07-24T15%3A25%3A11.4969192Z'" + - W/"datetime'2020-02-06T08%3A29%3A16.2603613Z'" expires: - '-1' pragma: @@ -462,7 +464,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-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/c0e309af-51e7-4e3a-bbca-f4cf950b5f6a?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0e309af-51e7-4e3a-bbca-f4cf950b5f6a","name":"c0e309af-51e7-4e3a-bbca-f4cf950b5f6a","status":"Succeeded","startTime":"2020-02-06T08:29:15.8254924Z","endTime":"2020-02-06T08:29:17.5435579Z","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, 06 Feb 2020 08:29:47 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account ad remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --active-directory + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A29%3A17.4234961Z''\"","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, 06 Feb 2020 08:29:47 GMT + etag: + - W/"datetime'2020-02-06T08%3A29%3A17.4234961Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + 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..8539bcf4dc5 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,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: !!python/unicode '{"location": "westus2stage", "tags": {"Tag1": "Value1", + "Tag2": "Value2"}}' headers: Accept: - application/json @@ -11,36 +12,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A28%3A31.8599998Z''\"","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/4810641b-46fb-4050-b4dd-bdfac5bc249b?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, 06 Feb 2020 08:28:33 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A38.2180344Z'" + - W/"datetime'2020-02-06T08%3A28%3A31.8599998Z'" expires: - '-1' pragma: @@ -74,24 +75,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/4810641b-46fb-4050-b4dd-bdfac5bc249b?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4810641b-46fb-4050-b4dd-bdfac5bc249b","name":"4810641b-46fb-4050-b4dd-bdfac5bc249b","status":"Succeeded","startTime":"2020-02-06T08:28:31.2801502Z","endTime":"2020-02-06T08:28:32.6282014Z","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, 06 Feb 2020 08:29:04 GMT expires: - '-1' pragma: @@ -127,26 +128,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A28%3A32.5296537Z''\"","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, 06 Feb 2020 08:29:05 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A38.2780771Z'" + - W/"datetime'2020-02-06T08%3A28%3A32.5296537Z'" expires: - '-1' pragma: @@ -182,26 +183,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A28%3A32.5296537Z''\"","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, 06 Feb 2020 08:29:07 GMT expires: - '-1' pragma: @@ -239,30 +240,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/3c90a882-b8b5-40cd-92a5-9bbf3db0e1fb?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:09:13 GMT + - Thu, 06 Feb 2020 08:29:10 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/3c90a882-b8b5-40cd-92a5-9bbf3db0e1fb?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -294,24 +295,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3c90a882-b8b5-40cd-92a5-9bbf3db0e1fb?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3c90a882-b8b5-40cd-92a5-9bbf3db0e1fb","name":"3c90a882-b8b5-40cd-92a5-9bbf3db0e1fb","status":"Succeeded","startTime":"2020-02-06T08:29:10.6262255Z","endTime":"2020-02-06T08:29:11.9259791Z","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, 06 Feb 2020 08:29:41 GMT expires: - '-1' pragma: @@ -347,15 +348,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: cache-control: - no-cache @@ -364,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:46 GMT + - Thu, 06 Feb 2020 08:29:43 GMT expires: - '-1' pragma: @@ -379,7 +380,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' + body: !!python/unicode '{"location": "westus2stage", "tags": {"Tag1": "Value1", + "Tag2": "Value2"}}' headers: Accept: - application/json @@ -390,36 +392,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A29%3A50.9942807Z''\"","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/a19eb3f9-9a6d-48bc-a77a-abdb1db0e3ab?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, 06 Feb 2020 08:29:51 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A49.0517652Z'" + - W/"datetime'2020-02-06T08%3A29%3A50.9942807Z'" expires: - '-1' pragma: @@ -453,24 +455,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a19eb3f9-9a6d-48bc-a77a-abdb1db0e3ab?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a19eb3f9-9a6d-48bc-a77a-abdb1db0e3ab","name":"a19eb3f9-9a6d-48bc-a77a-abdb1db0e3ab","status":"Succeeded","startTime":"2020-02-06T08:29:50.5637565Z","endTime":"2020-02-06T08:29:51.7659913Z","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, 06 Feb 2020 08:30:23 GMT expires: - '-1' pragma: @@ -506,26 +508,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A29%3A51.6669372Z''\"","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, 06 Feb 2020 08:30:23 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A49.116811Z'" + - W/"datetime'2020-02-06T08%3A29%3A51.6669372Z'" expires: - '-1' pragma: @@ -561,26 +563,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A29%3A51.6669372Z''\"","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, 06 Feb 2020 08:30:25 GMT expires: - '-1' pragma: @@ -618,30 +620,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/2e786078-f902-4beb-bc63-cf895b2a4006?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:10:26 GMT + - Thu, 06 Feb 2020 08:30:28 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/2e786078-f902-4beb-bc63-cf895b2a4006?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -673,24 +675,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/2e786078-f902-4beb-bc63-cf895b2a4006?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2e786078-f902-4beb-bc63-cf895b2a4006","name":"2e786078-f902-4beb-bc63-cf895b2a4006","status":"Succeeded","startTime":"2020-02-06T08:30:28.7193715Z","endTime":"2020-02-06T08:30:29.8813698Z","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, 06 Feb 2020 08:30:59 GMT expires: - '-1' pragma: @@ -726,15 +728,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: cache-control: - no-cache @@ -743,7 +745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:10:59 GMT + - Thu, 06 Feb 2020 08:31:01 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..76d7ef68fc8 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A09.3942657Z''\"","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/2146764c-e203-4d9d-888d-ebc167cc0faf?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, 06 Feb 2020 09:16:10 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A38.8637435Z'" + - W/"datetime'2020-02-06T09%3A16%3A09.3942657Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/2146764c-e203-4d9d-888d-ebc167cc0faf?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2146764c-e203-4d9d-888d-ebc167cc0faf","name":"2146764c-e203-4d9d-888d-ebc167cc0faf","status":"Succeeded","startTime":"2020-02-06T09:16:08.6974112Z","endTime":"2020-02-06T09:16:10.4270051Z","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, 06 Feb 2020 09:16:40 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A10.3011495Z''\"","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, 06 Feb 2020 09:16:40 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A38.9247865Z'" + - W/"datetime'2020-02-06T09%3A16%3A10.3011495Z'" 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: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A48.5134772Z''\"","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/5af85083-7e8e-43e1-86f6-086f7259ff85?api-version=2019-10-01 cache-control: - no-cache content-length: - - '582' + - '588' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:14 GMT + - Thu, 06 Feb 2020 09:16:48 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A15.092504Z'" + - W/"datetime'2020-02-06T09%3A16%3A48.5134772Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/5af85083-7e8e-43e1-86f6-086f7259ff85?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5af85083-7e8e-43e1-86f6-086f7259ff85","name":"5af85083-7e8e-43e1-86f6-086f7259ff85","status":"Succeeded","startTime":"2020-02-06T09:16:47.9065089Z","endTime":"2020-02-06T09:16:49.7082217Z","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, 06 Feb 2020 09:17:20 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A49.6115488Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e0314d66-65b8-14a4-2715-26a5e716adbc","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, 06 Feb 2020 09:17:21 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A15.4007226Z'" + - W/"datetime'2020-02-06T09%3A16%3A49.6115488Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T09%3A16%3A49.6115488Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e0314d66-65b8-14a4-2715-26a5e716adbc","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, 06 Feb 2020 09:17:22 GMT expires: - '-1' pragma: @@ -409,30 +409,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/eb5ce834-5487-40e4-b8f2-e1028d00bf4d?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:12:51 GMT + - Thu, 06 Feb 2020 09:17:26 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/eb5ce834-5487-40e4-b8f2-e1028d00bf4d?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/eb5ce834-5487-40e4-b8f2-e1028d00bf4d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eb5ce834-5487-40e4-b8f2-e1028d00bf4d","name":"eb5ce834-5487-40e4-b8f2-e1028d00bf4d","status":"Succeeded","startTime":"2020-02-06T09:17:26.1878033Z","endTime":"2020-02-06T09:17:26.9962814Z","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, 06 Feb 2020 09:17:57 GMT expires: - '-1' pragma: @@ -517,15 +517,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -536,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:13:25 GMT + - Thu, 06 Feb 2020 09:18:00 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: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A18%3A06.3855459Z''\"","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/37da7926-2446-4e48-b5c2-617bbe162bb4?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, 06 Feb 2020 09:18:07 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A28.6778187Z'" + - W/"datetime'2020-02-06T09%3A18%3A06.3855459Z'" expires: - '-1' pragma: @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/37da7926-2446-4e48-b5c2-617bbe162bb4?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/37da7926-2446-4e48-b5c2-617bbe162bb4","name":"37da7926-2446-4e48-b5c2-617bbe162bb4","status":"Succeeded","startTime":"2020-02-06T09:18:05.6813385Z","endTime":"2020-02-06T09:18:07.7848078Z","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, 06 Feb 2020 09:18:39 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A18%3A07.6768057Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"fed52d9e-4a6f-ec70-e3c6-706d4ded21bb","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, 06 Feb 2020 09:18:39 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A28.7898983Z'" + - W/"datetime'2020-02-06T09%3A18%3A07.6768057Z'" expires: - '-1' pragma: @@ -744,30 +744,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/73340a97-2808-4932-879b-7f9caa6588ee?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:14:03 GMT + - Thu, 06 Feb 2020 09:18:43 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/73340a97-2808-4932-879b-7f9caa6588ee?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/73340a97-2808-4932-879b-7f9caa6588ee?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/73340a97-2808-4932-879b-7f9caa6588ee","name":"73340a97-2808-4932-879b-7f9caa6588ee","status":"Succeeded","startTime":"2020-02-06T09:18:43.4884699Z","endTime":"2020-02-06T09:18:44.5304613Z","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, 06 Feb 2020 09:19:15 GMT expires: - '-1' pragma: @@ -852,15 +852,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -871,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:14:37 GMT + - Thu, 06 Feb 2020 09:19:17 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..c7983fe8be2 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 + 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-09-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-09-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-09-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 + 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-09-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 + 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-09-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}" + 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-09-01 + response: + body: + 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-09-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-09-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 - 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}" + - 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-09-01 + response: + body: + 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..dde2cf47c68 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"84358bbb-da59-4c75-8167-e62463cc2419\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"a4b93efe-ae0b-498e-b7cf-4321ce55f7db\"\ + ,\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/0703a372-2b92-40cc-a03c-472b13747ecc?api-version=2019-09-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 + - Fri, 07 Feb 2020 10:19:56 GMT expires: - '-1' pragma: @@ -58,7 +60,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e443be8c-55ed-4373-86ac-2e9679cc33a8 + - 5d44ed73-bffa-41e8-a3b6-0a275aa5c134 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -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/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/0703a372-2b92-40cc-a03c-472b13747ecc?api-version=2019-09-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 + - Fri, 07 Feb 2020 10:20:00 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c7958ee-4af6-48d3-a40a-92912be26fcc + - 0b881cd3-50bc-4fc3-ab62-08fa3b48f1cc 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"b5f9cc7a-abd9-4d6a-b571-21e3bc3f8232\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"a4b93efe-ae0b-498e-b7cf-4321ce55f7db\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Fri, 07 Feb 2020 10:20:00 GMT etag: - - W/"4cf331b8-4000-42af-8500-7a192587cf6a" + - W/"b5f9cc7a-abd9-4d6a-b571-21e3bc3f8232" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fb74b56-019b-4d01-859f-23b10aff22b1 + - 94a4356a-3b77-48a8-bd70-5d54683b48af status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"b5f9cc7a-abd9-4d6a-b571-21e3bc3f8232\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"a4b93efe-ae0b-498e-b7cf-4321ce55f7db\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Fri, 07 Feb 2020 10:20:01 GMT etag: - - W/"4cf331b8-4000-42af-8500-7a192587cf6a" + - W/"b5f9cc7a-abd9-4d6a-b571-21e3bc3f8232" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 814243b1-a7de-49bd-97ac-614ad660e04b + - 88b8b98e-65f4-4389-bd26-76aab34511a0 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"06b4c847-2830-454b-9fff-0a437266664a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"a4b93efe-ae0b-498e-b7cf-4321ce55f7db\"\ + ,\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/\\\"06b4c847-2830-454b-9fff-0a437266664a\\\"\"\ + ,\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/\\\"06b4c847-2830-454b-9fff-0a437266664a\\\ + \"\",\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/bd6c7dc8-1ef1-4c44-a6be-6f3283b8996a?api-version=2019-09-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 + - Fri, 07 Feb 2020 10:20:01 GMT expires: - '-1' pragma: @@ -320,7 +327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ba5c361-5be4-4f3b-9157-802cbc8da289 + - 368974b5-a13f-4a07-ab01-e549b0663119 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -340,13 +347,13 @@ 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 - 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/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/bd6c7dc8-1ef1-4c44-a6be-6f3283b8996a?api-version=2019-09-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 + - Fri, 07 Feb 2020 10:20:06 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ded0469-033c-4053-bc22-ce5bcf4e13ff + - 9389169a-3962-4997-a373-4df66170d4a4 status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"7435533c-fc0a-4441-ad06-fb7d160fba93\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"a4b93efe-ae0b-498e-b7cf-4321ce55f7db\"\ + ,\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/\\\"7435533c-fc0a-4441-ad06-fb7d160fba93\\\"\"\ + ,\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/\\\"7435533c-fc0a-4441-ad06-fb7d160fba93\\\ + \"\",\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:16 GMT + - Fri, 07 Feb 2020 10:20:06 GMT etag: - - W/"0acefc21-8c9e-40ef-8af6-a6c6f824cbdc" + - W/"7435533c-fc0a-4441-ad06-fb7d160fba93" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 180046b3-3451-4fd4-90fe-d2205a55834a + - 68942f7d-96b9-42f9-bd07-e2088e856046 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_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: !!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-07T10%3A20%3A15.6812621Z''\"","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/4645c853-cd56-47fd-99ca-971d669d4096?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 + - Fri, 07 Feb 2020 10:20:16 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.8826476Z'" + - W/"datetime'2020-02-07T10%3A20%3A15.6812621Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' 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/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/4645c853-cd56-47fd-99ca-971d669d4096?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4645c853-cd56-47fd-99ca-971d669d4096","name":"4645c853-cd56-47fd-99ca-971d669d4096","status":"Succeeded","startTime":"2020-02-07T10:20:15.1854528Z","endTime":"2020-02-07T10:20:16.6939705Z","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 + - Fri, 07 Feb 2020 10:20:47 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_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: !!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-07T10%3A20%3A16.5801395Z''\"","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 + - Fri, 07 Feb 2020 10:20:47 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.0817869Z'" + - W/"datetime'2020-02-07T10%3A20%3A16.5801395Z'" expires: - '-1' pragma: @@ -622,8 +631,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -634,36 +643,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T10%3A20%3A55.1247795Z''\"","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/6f7e3868-7613-46fd-8a50-225e0a72bae8?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 + - Fri, 07 Feb 2020 10:20:55 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.8953089Z'" + - W/"datetime'2020-02-07T10%3A20%3A55.1247795Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -697,24 +706,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/6f7e3868-7613-46fd-8a50-225e0a72bae8?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6f7e3868-7613-46fd-8a50-225e0a72bae8","name":"6f7e3868-7613-46fd-8a50-225e0a72bae8","status":"Succeeded","startTime":"2020-02-07T10:20:54.5617532Z","endTime":"2020-02-07T10:20:56.2866364Z","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 + - Fri, 07 Feb 2020 10:21:27 GMT expires: - '-1' pragma: @@ -750,26 +759,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T10%3A20%3A56.1848139Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"b6b8ba23-0bba-32d2-953f-04905f55f312","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 + - Fri, 07 Feb 2020 10:21:27 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.0574244Z'" + - W/"datetime'2020-02-07T10%3A20%3A56.1848139Z'" expires: - '-1' pragma: @@ -792,9 +801,10 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "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"}}''' + body: !!python/unicode '{"location": "westus2stage", "properties": {"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", + "protocolTypes": ["NFSv3"], "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, + "tags": {"Tag1": "Value1", "Tag2": "Value2"}}' headers: Accept: - application/json @@ -805,37 +815,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A21%3A37.9766298Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/a97de7e5-a7a0-42d8-9538-d80a250860e2?api-version=2019-10-01 cache-control: - no-cache content-length: - - '977' + - '982' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:32 GMT + - Fri, 07 Feb 2020 10:21:39 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A32.1008157Z'" + - W/"datetime'2020-02-07T10%3A21%3A37.9766298Z'" expires: - '-1' pragma: @@ -849,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -870,78 +880,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/03a96007-5f72-42ab-9bbd-ab239c2599a3?api-version=2019-08-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"}}' - 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: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 --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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:22:09 GMT expires: - '-1' pragma: @@ -978,24 +934,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:22:40 GMT expires: - '-1' pragma: @@ -1032,24 +988,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:23:11 GMT expires: - '-1' pragma: @@ -1086,24 +1042,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:23:41 GMT expires: - '-1' pragma: @@ -1140,24 +1096,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:24:11 GMT expires: - '-1' pragma: @@ -1194,24 +1150,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:24:43 GMT expires: - '-1' pragma: @@ -1248,24 +1204,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:25:13 GMT expires: - '-1' pragma: @@ -1302,24 +1258,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:25:43 GMT expires: - '-1' pragma: @@ -1356,24 +1312,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:26:14 GMT expires: - '-1' pragma: @@ -1410,24 +1366,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Creating","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:26:45 GMT expires: - '-1' pragma: @@ -1464,24 +1420,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a97de7e5-a7a0-42d8-9538-d80a250860e2?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a97de7e5-a7a0-42d8-9538-d80a250860e2","name":"a97de7e5-a7a0-42d8-9538-d80a250860e2","status":"Succeeded","startTime":"2020-02-07T10:21:37.4072308Z","endTime":"2020-02-07T10:27:09.446197Z","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:20:39 GMT + - Fri, 07 Feb 2020 10:27:16 GMT expires: - '-1' pragma: @@ -1518,26 +1474,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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%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: !!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-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-07T10%3A27%3A09.2621522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"fafdf09a-8d2f-031d-7e9f-3a6341125091","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_df35ebf7","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":"fafdf09a-8d2f-031d-7e9f-3a6341125091","fileSystemId":"fafdf09a-8d2f-031d-7e9f-3a6341125091","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: - - '1594' + - '1602' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:39 GMT + - Fri, 07 Feb 2020 10:27:17 GMT etag: - - W/"datetime'2020-02-07T16%3A20%3A12.8028266Z'" + - W/"datetime'2020-02-07T10%3A27%3A09.2621522Z'" expires: - '-1' pragma: @@ -1573,26 +1529,26 @@ interactions: ParameterSetName: - --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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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-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: !!python/unicode '{"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-07T10%3A27%3A09.2621522Z''\"","location":"westus2stage","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"fafdf09a-8d2f-031d-7e9f-3a6341125091","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_df35ebf7","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":"fafdf09a-8d2f-031d-7e9f-3a6341125091","fileSystemId":"fafdf09a-8d2f-031d-7e9f-3a6341125091","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: - - '1606' + - '1614' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:40 GMT + - Fri, 07 Feb 2020 10:27:19 GMT expires: - '-1' pragma: @@ -1630,30 +1586,30 @@ 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: 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: '' + 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/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:20:43 GMT + - Fri, 07 Feb 2020 10:27:23 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1685,77 +1641,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/d0af24d1-b4ac-4ce5-ad82-374c07b54d8d?api-version=2019-08-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"}}' - 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:13 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-SP0) 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/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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:27:54 GMT expires: - '-1' pragma: @@ -1791,24 +1694,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:28:24 GMT expires: - '-1' pragma: @@ -1844,24 +1747,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:28:55 GMT expires: - '-1' pragma: @@ -1897,24 +1800,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:29:25 GMT expires: - '-1' pragma: @@ -1950,24 +1853,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:29:55 GMT expires: - '-1' pragma: @@ -2003,24 +1906,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:30:27 GMT expires: - '-1' pragma: @@ -2056,24 +1959,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:30:57 GMT expires: - '-1' pragma: @@ -2109,24 +2012,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:31:27 GMT expires: - '-1' pragma: @@ -2162,24 +2065,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:31:58 GMT expires: - '-1' pragma: @@ -2215,24 +2118,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:32:28 GMT expires: - '-1' pragma: @@ -2268,24 +2171,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:33:00 GMT expires: - '-1' pragma: @@ -2321,24 +2224,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:33:30 GMT expires: - '-1' pragma: @@ -2374,24 +2277,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:34:01 GMT expires: - '-1' pragma: @@ -2427,24 +2330,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Deleting","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:34:31 GMT expires: - '-1' pragma: @@ -2480,24 +2383,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3a519e53-768a-441f-a896-4922b828918f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3a519e53-768a-441f-a896-4922b828918f","name":"3a519e53-768a-441f-a896-4922b828918f","status":"Succeeded","startTime":"2020-02-07T10:27:22.8448384Z","endTime":"2020-02-07T10:34:52.8654523Z","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 + - Fri, 07 Feb 2020 10:35:02 GMT expires: - '-1' pragma: @@ -2533,15 +2436,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -2552,7 +2455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:28:52 GMT + - Fri, 07 Feb 2020 10:35:04 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..674e4407655 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A08.9378188Z''\"","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/fcc92019-58da-4e84-b365-153e38293628?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, 06 Feb 2020 09:16:09 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.0538786Z'" + - W/"datetime'2020-02-06T09%3A16%3A08.9378188Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/fcc92019-58da-4e84-b365-153e38293628?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fcc92019-58da-4e84-b365-153e38293628","name":"fcc92019-58da-4e84-b365-153e38293628","status":"Succeeded","startTime":"2020-02-06T09:16:08.3285385Z","endTime":"2020-02-06T09:16:09.7257127Z","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, 06 Feb 2020 09:16:41 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A09.6395035Z''\"","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, 06 Feb 2020 09:16:41 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.1429419Z'" + - W/"datetime'2020-02-06T09%3A16%3A09.6395035Z'" 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..9df3cf1f1d7 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A09.5313989Z''\"","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/285c1e26-356d-4f47-8e18-4dd5e50b49d9?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, 06 Feb 2020 09:16:10 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A37.8430181Z'" + - W/"datetime'2020-02-06T09%3A16%3A09.5313989Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/285c1e26-356d-4f47-8e18-4dd5e50b49d9?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/285c1e26-356d-4f47-8e18-4dd5e50b49d9","name":"285c1e26-356d-4f47-8e18-4dd5e50b49d9","status":"Succeeded","startTime":"2020-02-06T09:16:08.8421818Z","endTime":"2020-02-06T09:16:10.4511249Z","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, 06 Feb 2020 09:16: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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A10.3391871Z''\"","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, 06 Feb 2020 09:16:42 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A37.9060629Z'" + - W/"datetime'2020-02-06T09%3A16%3A10.3391871Z'" 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..de418b21da3 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "westus2"}' + body: !!python/unicode '{"location": "westus2"}' headers: Accept: - application/json @@ -17,15 +17,15 @@ 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 - azure-mgmt-resource/8.0.1 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-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-000007?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007","name":"cli-rg-000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007","name":"cli-rg-000007","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:04 GMT + - Fri, 07 Feb 2020 10:19:55 GMT expires: - '-1' pragma: @@ -44,13 +44,13 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -67,26 +67,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-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"cb5f48fb-692f-43ac-9a58-9e70ef87861d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"82d3683f-ead9-4dbe-895f-b3b411ca9843\"\ + ,\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/0e1fb88c-dc99-4abc-9f9a-74304d2033ae?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -94,7 +96,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Fri, 07 Feb 2020 10:20:02 GMT expires: - '-1' pragma: @@ -107,9 +109,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d35accf-529d-4230-9f95-ae0f34847c79 + - ec32858f-9a6c-4e56-9330-2a48916fd6c2 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -127,13 +129,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/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/0e1fb88c-dc99-4abc-9f9a-74304d2033ae?api-version=2019-09-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -142,7 +144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:14 GMT + - Fri, 07 Feb 2020 10:20:06 GMT expires: - '-1' pragma: @@ -159,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8cd6928c-629f-4fbe-a131-74420549d276 + - 8435767c-a667-4bb9-bdd1-6f567581d450 status: code: 200 message: OK @@ -177,21 +179,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-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"31c93038-fbd8-4484-b2bf-27cfbc68b268\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"82d3683f-ead9-4dbe-895f-b3b411ca9843\"\ + ,\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 +204,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:14 GMT + - Fri, 07 Feb 2020 10:20:06 GMT etag: - - W/"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8" + - W/"31c93038-fbd8-4484-b2bf-27cfbc68b268" expires: - '-1' pragma: @@ -219,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e8f304b-aa81-48a2-a51e-3b59ea9f976f + - cbf2acc8-1aef-40b0-a3b0-032f058efaf1 status: code: 200 message: OK @@ -237,23 +241,25 @@ 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 - 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-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"31c93038-fbd8-4484-b2bf-27cfbc68b268\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"82d3683f-ead9-4dbe-895f-b3b411ca9843\"\ + ,\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 +268,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:15 GMT + - Fri, 07 Feb 2020 10:20:06 GMT etag: - - W/"c3d01e3d-3a7c-49e1-b432-b7bfacaadec8" + - W/"31c93038-fbd8-4484-b2bf-27cfbc68b268" expires: - '-1' pragma: @@ -281,18 +287,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eedb4c06-ab60-407a-af9c-d89794f84da4 + - 69e76270-4d26-453e-8f11-b41efe8347cc status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -309,42 +314,44 @@ 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 - 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-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"dfd43b6a-8e4e-468c-a928-49d3b359ee96\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"82d3683f-ead9-4dbe-895f-b3b411ca9843\"\ + ,\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/\\\"dfd43b6a-8e4e-468c-a928-49d3b359ee96\\\"\"\ + ,\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/\\\"dfd43b6a-8e4e-468c-a928-49d3b359ee96\\\ + \"\",\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/f2a7e6ed-9ac0-4ce5-a049-408f06bba02e?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -352,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:16 GMT + - Fri, 07 Feb 2020 10:20:07 GMT expires: - '-1' pragma: @@ -369,9 +376,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a71b50e-fce2-4a18-9e5e-6b369b12fe8e + - 27cf2c7d-42cf-4c70-a950-e774aded5329 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -389,13 +396,13 @@ 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 - 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/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/f2a7e6ed-9ac0-4ce5-a049-408f06bba02e?api-version=2019-09-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -404,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:19 GMT + - Fri, 07 Feb 2020 10:20:11 GMT expires: - '-1' pragma: @@ -421,7 +428,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8edb7f9e-f576-400b-9852-bb648fb32588 + - d150b786-33d2-4327-bd3f-a91285721e80 status: code: 200 message: OK @@ -439,37 +446,39 @@ 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 - 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-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"961dc4c8-ba28-4b42-bbca-feb032949ac1\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"82d3683f-ead9-4dbe-895f-b3b411ca9843\"\ + ,\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/\\\"961dc4c8-ba28-4b42-bbca-feb032949ac1\\\"\"\ + ,\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/\\\"961dc4c8-ba28-4b42-bbca-feb032949ac1\\\ + \"\",\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 +487,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:20 GMT + - Fri, 07 Feb 2020 10:20:11 GMT etag: - - W/"7a15e26d-9bfb-41f6-85d1-0b277945f4b1" + - W/"961dc4c8-ba28-4b42-bbca-feb032949ac1" expires: - '-1' pragma: @@ -497,12 +506,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d400d64a-d224-4291-9eea-11f3bec336bf + - b372d676-8e8f-4356-9bc3-db3a47387caa status: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: !!python/unicode '{"location": "westus2stage"}' headers: Accept: - application/json @@ -513,36 +522,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_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: !!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-07T10%3A20%3A20.1015766Z''\"","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/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/7c3661c8-0028-4074-b298-6373f375f37f?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:23 GMT + - Fri, 07 Feb 2020 10:20:21 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A24.1959788Z'" + - W/"datetime'2020-02-07T10%3A20%3A20.1015766Z'" expires: - '-1' pragma: @@ -556,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -576,24 +585,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/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/7c3661c8-0028-4074-b298-6373f375f37f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7c3661c8-0028-4074-b298-6373f375f37f","name":"7c3661c8-0028-4074-b298-6373f375f37f","status":"Succeeded","startTime":"2020-02-07T10:20:19.5317001Z","endTime":"2020-02-07T10:20:21.0627955Z","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 + - Fri, 07 Feb 2020 10:20:52 GMT expires: - '-1' pragma: @@ -629,26 +638,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_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: !!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-07T10%3A20%3A20.9243797Z''\"","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 + - Fri, 07 Feb 2020 10:20:52 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A24.3961201Z'" + - W/"datetime'2020-02-07T10%3A20%3A20.9243797Z'" expires: - '-1' pragma: @@ -671,8 +680,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 @@ -683,36 +692,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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T10%3A21%3A01.5750813Z''\"","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/c9ba8a6a-c87f-4397-87da-7685c8cacb98?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 + - Fri, 07 Feb 2020 10:21:02 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A59.0585402Z'" + - W/"datetime'2020-02-07T10%3A21%3A01.5750813Z'" expires: - '-1' pragma: @@ -726,7 +735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -746,24 +755,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/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/c9ba8a6a-c87f-4397-87da-7685c8cacb98?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c9ba8a6a-c87f-4397-87da-7685c8cacb98","name":"c9ba8a6a-c87f-4397-87da-7685c8cacb98","status":"Succeeded","startTime":"2020-02-07T10:21:00.3176201Z","endTime":"2020-02-07T10:21:02.7277004Z","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 + - Fri, 07 Feb 2020 10:21:34 GMT expires: - '-1' pragma: @@ -799,26 +808,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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T10%3A21%3A02.6261072Z''\"","location":"westus2stage","properties":{"poolId":"b4278067-a480-bf00-8fbe-32339dfc60d0","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 + - Fri, 07 Feb 2020 10:21:34 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A59.2146501Z'" + - W/"datetime'2020-02-07T10%3A21%3A02.6261072Z'" expires: - '-1' pragma: @@ -841,8 +850,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westus2stage"}' headers: Accept: - application/json @@ -853,37 +863,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A21%3A43.6231399Z''\"","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","provisioningState":"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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?api-version=2019-10-01 cache-control: - no-cache content-length: - - '859' + - '864' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:34 GMT + - Fri, 07 Feb 2020 10:21:44 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A34.1442559Z'" + - W/"datetime'2020-02-07T10%3A21%3A43.6231399Z'" expires: - '-1' pragma: @@ -897,7 +907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' x-powered-by: - ASP.NET status: @@ -918,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:22:15 GMT expires: - '-1' pragma: @@ -972,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:22:46 GMT expires: - '-1' pragma: @@ -1026,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:23:16 GMT expires: - '-1' pragma: @@ -1080,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:23:47 GMT expires: - '-1' pragma: @@ -1134,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:24:17 GMT expires: - '-1' pragma: @@ -1188,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:24:47 GMT expires: - '-1' pragma: @@ -1242,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:25:19 GMT expires: - '-1' pragma: @@ -1296,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:25:49 GMT expires: - '-1' pragma: @@ -1350,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:26:19 GMT expires: - '-1' pragma: @@ -1404,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:26:50 GMT expires: - '-1' pragma: @@ -1458,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:27:21 GMT expires: - '-1' pragma: @@ -1512,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:27:51 GMT expires: - '-1' pragma: @@ -1566,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:28:22 GMT expires: - '-1' pragma: @@ -1620,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:28:53 GMT expires: - '-1' pragma: @@ -1674,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:29:23 GMT expires: - '-1' pragma: @@ -1728,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:29:55 GMT expires: - '-1' pragma: @@ -1782,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:30:25 GMT expires: - '-1' pragma: @@ -1836,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:30:55 GMT expires: - '-1' pragma: @@ -1890,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:31:26 GMT expires: - '-1' pragma: @@ -1944,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:31:56 GMT expires: - '-1' pragma: @@ -1998,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:32:27 GMT expires: - '-1' pragma: @@ -2052,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:32:58 GMT expires: - '-1' pragma: @@ -2106,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Creating","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:33:28 GMT expires: - '-1' pragma: @@ -2160,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/99cf3bf6-c4f8-47cd-8c80-e74a25b56927?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/99cf3bf6-c4f8-47cd-8c80-e74a25b56927","name":"99cf3bf6-c4f8-47cd-8c80-e74a25b56927","status":"Succeeded","startTime":"2020-02-07T10:21:43.0157819Z","endTime":"2020-02-07T10:33:30.836651Z","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:26:50 GMT + - Fri, 07 Feb 2020 10:33:59 GMT expires: - '-1' pragma: @@ -2214,26 +2224,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/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: !!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-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-07T10%3A33%3A30.7211795Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"757ccde2-9158-715c-195b-c2a3e3f6320d","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":294912,"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_172f5fc0","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":"757ccde2-9158-715c-195b-c2a3e3f6320d","fileSystemId":"757ccde2-9158-715c-195b-c2a3e3f6320d","startIp":"10.0.0.15","endIp":"10.0.0.15","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.15"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1502' + - '1515' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:26:50 GMT + - Fri, 07 Feb 2020 10:34:00 GMT etag: - - W/"datetime'2020-02-07T16%3A26%3A42.4664062Z'" + - W/"datetime'2020-02-07T10%3A33%3A30.7211795Z'" expires: - '-1' pragma: @@ -2271,30 +2281,30 @@ 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: 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: '' + 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/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/a563fb64-b754-4bcf-9752-51694dcc4ef1?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:26:53 GMT + - Fri, 07 Feb 2020 10:34:07 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/a563fb64-b754-4bcf-9752-51694dcc4ef1?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2326,183 +2336,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 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a563fb64-b754-4bcf-9752-51694dcc4ef1?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a563fb64-b754-4bcf-9752-51694dcc4ef1","name":"a563fb64-b754-4bcf-9752-51694dcc4ef1","status":"Deleting","startTime":"2020-02-07T10:34:05.4423931Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:55 GMT + - Fri, 07 Feb 2020 10:34:37 GMT expires: - '-1' pragma: @@ -2538,24 +2389,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a563fb64-b754-4bcf-9752-51694dcc4ef1?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a563fb64-b754-4bcf-9752-51694dcc4ef1","name":"a563fb64-b754-4bcf-9752-51694dcc4ef1","status":"Deleting","startTime":"2020-02-07T10:34:05.4423931Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:26 GMT + - Fri, 07 Feb 2020 10:35:08 GMT expires: - '-1' pragma: @@ -2591,24 +2442,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a563fb64-b754-4bcf-9752-51694dcc4ef1?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a563fb64-b754-4bcf-9752-51694dcc4ef1","name":"a563fb64-b754-4bcf-9752-51694dcc4ef1","status":"Deleting","startTime":"2020-02-07T10:34:05.4423931Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:57 GMT + - Fri, 07 Feb 2020 10:35:39 GMT expires: - '-1' pragma: @@ -2644,236 +2495,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/a563fb64-b754-4bcf-9752-51694dcc4ef1?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a563fb64-b754-4bcf-9752-51694dcc4ef1","name":"a563fb64-b754-4bcf-9752-51694dcc4ef1","status":"Succeeded","startTime":"2020-02-07T10:34:05.4423931Z","endTime":"2020-02-07T10:35:50.8350609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '653' content-type: - application/json; charset=utf-8 date: - - 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 - 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: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 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:31:29 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume 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:31: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 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":"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"}}' - 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:32:30 GMT + - Fri, 07 Feb 2020 10:36:10 GMT expires: - '-1' pragma: @@ -2911,26 +2550,26 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.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-rg-000007?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:32:35 GMT + - Fri, 07 Feb 2020 10:36:16 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2938,7 +2577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2956,24 +2595,24 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:32:51 GMT + - Fri, 07 Feb 2020 10:36:33 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -2997,24 +2636,24 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:07 GMT + - Fri, 07 Feb 2020 10:36:48 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3038,24 +2677,24 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:22 GMT + - Fri, 07 Feb 2020 10:37:03 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3079,24 +2718,24 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:37 GMT + - Fri, 07 Feb 2020 10:37:19 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3120,24 +2759,24 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:33:53 GMT + - Fri, 07 Feb 2020 10:37:34 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: @@ -3161,20 +2800,20 @@ 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 - azure-mgmt-resource/8.0.1 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-resource/6.0.0 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRDM2WFhXWk1NUDZCS1IzS0tELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-07-01 response: body: - string: '' + string: !!python/unicode '' headers: cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Feb 2020 16:34:09 GMT + - Fri, 07 Feb 2020 10:37:49 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..57a6a46f50c 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"56e8fc97-4775-4a72-81fa-754c82b5a4f7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"144118ca-b184-4909-a1d3-c5611c5468e9\"\ + ,\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/96a3d902-1887-4f6f-bf91-ad3fdeb816ae?api-version=2019-09-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 + - Fri, 07 Feb 2020 09:58:23 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6ab3300-7e8e-401f-b459-40d4b7c2fe32 + - dc012e5d-0eac-4d30-9721-c75917ed653b x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' 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/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/96a3d902-1887-4f6f-bf91-ad3fdeb816ae?api-version=2019-09-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 + - Fri, 07 Feb 2020 09:58:27 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7d6d5f4-cc8a-466a-ae18-0dd2cec2ca48 + - 62b57d65-67e9-4315-8e4e-ebc50f7d71cc 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"0ad0fb66-1252-443f-9bd6-74aee348df84\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"144118ca-b184-4909-a1d3-c5611c5468e9\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Fri, 07 Feb 2020 09:58:28 GMT etag: - - W/"97a45b24-b35d-4d89-9ff3-bbc74e061839" + - W/"0ad0fb66-1252-443f-9bd6-74aee348df84" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93234bb6-330f-450a-81fb-0b08a00c76c1 + - 54ae2a31-7698-47bc-bc3a-084b2ece01a7 status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"0ad0fb66-1252-443f-9bd6-74aee348df84\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"144118ca-b184-4909-a1d3-c5611c5468e9\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:11 GMT + - Fri, 07 Feb 2020 09:58:29 GMT etag: - - W/"97a45b24-b35d-4d89-9ff3-bbc74e061839" + - W/"0ad0fb66-1252-443f-9bd6-74aee348df84" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eefc6775-8365-4f5e-8c8d-242de1c0fe25 + - 501eaec7-da5a-4b23-8dfe-f95c7c3430d9 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_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}" + 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-09-01 + response: + body: + string: !!python/unicode "{\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/\\\"b04555f8-9225-4c25-aead-ae22f1ae99ed\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"144118ca-b184-4909-a1d3-c5611c5468e9\"\ + ,\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/\\\"b04555f8-9225-4c25-aead-ae22f1ae99ed\\\"\"\ + ,\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/\\\"b04555f8-9225-4c25-aead-ae22f1ae99ed\\\ + \"\",\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/ce7b89cf-ad89-41c3-a5d7-398802d27191?api-version=2019-09-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:11 GMT + - Fri, 07 Feb 2020 09:58:30 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c78ce362-dcbc-407f-8a0c-b9d9b543f5fd + - c7835655-e385-4a86-8785-abe96686fc4f x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -340,13 +347,13 @@ 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 - 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/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/ce7b89cf-ad89-41c3-a5d7-398802d27191?api-version=2019-09-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:16 GMT + - Fri, 07 Feb 2020 09:58:34 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f18acd58-f9bf-4c45-9306-683371a7dffe + - 98a710dd-4b24-44aa-95be-fd7040b6b1a7 status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_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}" + 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-09-01 + response: + body: + string: !!python/unicode "{\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/\\\"de6400ec-f7d0-4c50-8add-4aac105ab65c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"144118ca-b184-4909-a1d3-c5611c5468e9\"\ + ,\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/\\\"de6400ec-f7d0-4c50-8add-4aac105ab65c\\\"\"\ + ,\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/\\\"de6400ec-f7d0-4c50-8add-4aac105ab65c\\\ + \"\",\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:16 GMT + - Fri, 07 Feb 2020 09:58:34 GMT etag: - - W/"57354cb1-d8b8-43ab-afda-8052454f6f3e" + - W/"de6400ec-f7d0-4c50-8add-4aac105ab65c" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f88d0de8-420c-4fc2-a536-7d4a231fecb0 + - 5d2024a1-3b8d-4471-939d-9a362db766e7 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_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: !!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%3A58%3A42.4616468Z''\"","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/557115fd-83a8-4c66-a7ae-66fb90ab5068?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 + - Fri, 07 Feb 2020 09:58:44 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A19.9009557Z'" + - W/"datetime'2020-02-07T09%3A58%3A42.4616468Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' 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/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/557115fd-83a8-4c66-a7ae-66fb90ab5068?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/557115fd-83a8-4c66-a7ae-66fb90ab5068","name":"557115fd-83a8-4c66-a7ae-66fb90ab5068","status":"Succeeded","startTime":"2020-02-07T09:58:42.0526911Z","endTime":"2020-02-07T09:58:43.231816Z","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 + - Fri, 07 Feb 2020 09:59:14 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_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: !!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%3A58%3A43.1232928Z''\"","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 + - Fri, 07 Feb 2020 09:59:14 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.1000959Z'" + - W/"datetime'2020-02-07T09%3A58%3A43.1232928Z'" 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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A23.0903316Z''\"","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/6cdfd1e3-bd2a-468d-bba8-cb321536c4b5?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 + - Fri, 07 Feb 2020 09:59:23 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.0003834Z'" + - W/"datetime'2020-02-07T09%3A59%3A23.0903316Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' 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/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/6cdfd1e3-bd2a-468d-bba8-cb321536c4b5?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6cdfd1e3-bd2a-468d-bba8-cb321536c4b5","name":"6cdfd1e3-bd2a-468d-bba8-cb321536c4b5","status":"Succeeded","startTime":"2020-02-07T09:59:22.608592Z","endTime":"2020-02-07T09:59:24.4764535Z","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:14:27 GMT + - Fri, 07 Feb 2020 09:59:55 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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A24.3765868Z''\"","location":"westus2stage","properties":{"poolId":"8d5efcf6-a3f6-5b86-ebed-2559924b9825","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 + - Fri, 07 Feb 2020 09:59:56 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.2565661Z'" + - W/"datetime'2020-02-07T09%3A59%3A24.3765868Z'" 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' + 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-000005/subnets/cli-subnet-000006", + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westus2stage"}' headers: Accept: - application/json @@ -804,37 +814,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A00%3A02.7801013Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '915' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:34 GMT + - Fri, 07 Feb 2020 10:00:03 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A33.3867208Z'" + - W/"datetime'2020-02-07T10%3A00%3A02.7801013Z'" expires: - '-1' pragma: @@ -848,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -869,294 +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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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: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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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: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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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:17: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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:00:34 GMT expires: - '-1' pragma: @@ -1193,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:01:05 GMT expires: - '-1' pragma: @@ -1247,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:01:36 GMT expires: - '-1' pragma: @@ -1301,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:07 GMT expires: - '-1' pragma: @@ -1355,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:37 GMT expires: - '-1' pragma: @@ -1409,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:07 GMT expires: - '-1' pragma: @@ -1463,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:39 GMT expires: - '-1' pragma: @@ -1517,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:09 GMT expires: - '-1' pragma: @@ -1571,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:39 GMT expires: - '-1' pragma: @@ -1625,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:05:10 GMT expires: - '-1' pragma: @@ -1679,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:05:40 GMT expires: - '-1' pragma: @@ -1733,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:06:12 GMT expires: - '-1' pragma: @@ -1787,24 +1527,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:06:42 GMT expires: - '-1' pragma: @@ -1841,24 +1581,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:07:13 GMT expires: - '-1' pragma: @@ -1895,24 +1635,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:07:43 GMT expires: - '-1' pragma: @@ -1949,24 +1689,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:08:14 GMT expires: - '-1' pragma: @@ -2003,24 +1743,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:08:44 GMT expires: - '-1' pragma: @@ -2057,24 +1797,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:09:16 GMT expires: - '-1' pragma: @@ -2111,24 +1851,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:09:47 GMT expires: - '-1' pragma: @@ -2165,24 +1905,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:10:17 GMT expires: - '-1' pragma: @@ -2219,24 +1959,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:10:47 GMT expires: - '-1' pragma: @@ -2273,24 +2013,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:11:18 GMT expires: - '-1' pragma: @@ -2327,24 +2067,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:11:49 GMT expires: - '-1' pragma: @@ -2381,24 +2121,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:12:20 GMT expires: - '-1' pragma: @@ -2435,24 +2175,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:12:51 GMT expires: - '-1' pragma: @@ -2489,24 +2229,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:13:21 GMT expires: - '-1' pragma: @@ -2543,24 +2283,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:13:51 GMT expires: - '-1' pragma: @@ -2597,24 +2337,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:14:23 GMT expires: - '-1' pragma: @@ -2651,24 +2391,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:14:53 GMT expires: - '-1' pragma: @@ -2705,24 +2445,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:15:23 GMT expires: - '-1' pragma: @@ -2759,24 +2499,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:15:54 GMT expires: - '-1' pragma: @@ -2813,24 +2553,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Creating","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:16:24 GMT expires: - '-1' pragma: @@ -2867,24 +2607,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/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/979de11c-1afb-4676-a6a6-5dde61d5b37a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/979de11c-1afb-4676-a6a6-5dde61d5b37a","name":"979de11c-1afb-4676-a6a6-5dde61d5b37a","status":"Succeeded","startTime":"2020-02-07T10:00:02.3077202Z","endTime":"2020-02-07T10:16:49.448213Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '652' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:33:56 GMT + - Fri, 07 Feb 2020 10:16:55 GMT expires: - '-1' pragma: @@ -2921,242 +2661,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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?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/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: !!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-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-07T10%3A16%3A49.2695962Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1561' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:34: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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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: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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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: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/466439e5-5c8e-4b1b-aec7-5fb3902fd065?api-version=2019-08-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"}}' - 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:35:58 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - 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_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: '{"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"}]}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1553' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Feb 2020 16:35:59 GMT + - Fri, 07 Feb 2020 10:16:57 GMT etag: - - W/"datetime'2020-02-07T16%3A35%3A44.4902981Z'" + - W/"datetime'2020-02-07T10%3A16%3A49.2695962Z'" expires: - '-1' pragma: @@ -3193,28 +2717,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A16%3A49.2695962Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1561' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:01 GMT + - Fri, 07 Feb 2020 10:16:59 GMT etag: - - W/"datetime'2020-02-07T16%3A35%3A44.4902981Z'" + - W/"datetime'2020-02-07T10%3A16%3A49.2695962Z'" expires: - '-1' pragma: @@ -3237,11 +2761,12 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": - false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, - {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "exportPolicy": + {"rules": [{"nfsv41": false, "allowedClients": "1.2.3.0/24", "cifs": false, + "unixReadOnly": true, "unixReadWrite": false, "ruleIndex": 3, "nfsv3": true}, + {"nfsv41": false, "allowedClients": "0.0.0.0/0", "cifs": false, "unixReadOnly": + false, "unixReadWrite": true, "ruleIndex": 1, "nfsv3": true}]}, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -3259,28 +2784,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A17%3A04.8788433Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1668' + - '1676' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:06 GMT + - Fri, 07 Feb 2020 10:17:08 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A03.7888916Z'" + - W/"datetime'2020-02-07T10%3A17%3A04.8788433Z'" expires: - '-1' pragma: @@ -3298,7 +2823,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -3319,28 +2844,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A17%3A08.4963747Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1667' + - '1676' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:07 GMT + - Fri, 07 Feb 2020 10:17:10 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A06.808017Z'" + - W/"datetime'2020-02-07T10%3A17%3A08.4963747Z'" expires: - '-1' pragma: @@ -3363,13 +2888,13 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 2, "unixReadOnly": true, "unixReadWrite": - false, "cifs": true, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.4.0/24"}, - {"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": false, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, {"ruleIndex": - 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, "nfsv3": true, - "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "exportPolicy": + {"rules": [{"nfsv41": false, "allowedClients": "1.2.4.0/24", "cifs": true, "unixReadOnly": + true, "unixReadWrite": false, "ruleIndex": 2, "nfsv3": true}, {"nfsv41": false, + "allowedClients": "1.2.3.0/24", "cifs": false, "unixReadOnly": true, "unixReadWrite": + false, "ruleIndex": 3, "nfsv3": true}, {"nfsv41": false, "allowedClients": "0.0.0.0/0", + "cifs": false, "unixReadOnly": false, "unixReadWrite": true, "ruleIndex": 1, + "nfsv3": true}]}, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -3387,28 +2912,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A17%3A14.3300747Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1804' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:11 GMT + - Fri, 07 Feb 2020 10:17:21 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A09.7230743Z'" + - W/"datetime'2020-02-07T10%3A17%3A14.3300747Z'" expires: - '-1' pragma: @@ -3426,7 +2951,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' x-powered-by: - ASP.NET status: @@ -3446,28 +2971,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A17%3A20.9865747Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1804' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:14 GMT + - Fri, 07 Feb 2020 10:17:23 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A12.0557166Z'" + - W/"datetime'2020-02-07T10%3A17%3A20.9865747Z'" expires: - '-1' pragma: @@ -3503,28 +3028,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A17%3A20.9865747Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1796' + - '1804' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:18 GMT + - Fri, 07 Feb 2020 10:17:25 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A12.0557166Z'" + - W/"datetime'2020-02-07T10%3A17%3A20.9865747Z'" expires: - '-1' pragma: @@ -3547,17 +3072,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "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"}]}}''' + body: !!python/unicode '{"properties": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "protocolTypes": ["NFSv3"], "exportPolicy": {"rules": [{"nfsv41": false, "allowedClients": + "1.2.3.0/24", "cifs": false, "unixReadOnly": true, "unixReadWrite": false, "ruleIndex": + 3, "nfsv3": true}, {"nfsv41": false, "allowedClients": "0.0.0.0/0", "cifs": + false, "unixReadOnly": false, "unixReadWrite": true, "ruleIndex": 1, "nfsv3": + true}]}, "creationToken": "cli-vol-000004", "usageThreshold": 107374182400, + "serviceLevel": "Premium", "mountTargets": [{"endIp": "10.0.0.13", "mountTargetId": + "e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11", "subnet": "", "startIp": "10.0.0.13", + "netmask": "", "fileSystemId": "e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11", "ipAddress": + "10.0.0.13", "gateway": "", "provisioningState": "Succeeded"}]}, "location": + "westus2stage"}' headers: Accept: - application/json @@ -3568,34 +3093,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A17%3A28.8042083Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","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_a39cadc0","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":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","fileSystemId":"e6faa9c8-16ba-2d59-a4e4-51fa5fe49e11","startIp":"10.0.0.13","endIp":"10.0.0.13","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.13"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1668' + - '1676' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:36:22 GMT + - Fri, 07 Feb 2020 10:17:32 GMT etag: - - W/"datetime'2020-02-07T16%3A36%3A20.7048102Z'" + - W/"datetime'2020-02-07T10%3A17%3A28.8042083Z'" 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..ae53540698d 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"12d1286e-b119-4aac-aa51-88c5e9ad7a3e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"b61f5c0c-9e20-470b-a9dd-9e98926442bb\"\ + ,\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/c4334975-07a9-4bf7-98f6-7faf59468565?api-version=2019-09-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:04 GMT + - Fri, 07 Feb 2020 09:58:23 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99ffe0d7-5de4-4d95-a96f-042375c8eac0 + - 210bafd6-b6a2-4114-9bdb-093457e2e74b x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '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/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/c4334975-07a9-4bf7-98f6-7faf59468565?api-version=2019-09-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:08 GMT + - Fri, 07 Feb 2020 09:58:27 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d58ced40-6c90-4eb0-b532-76db7e7f3c8f + - 2a313727-f8bf-4411-826d-80a96a50f58b 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"fda33440-e742-45ca-a001-cc83a1a63b18\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b61f5c0c-9e20-470b-a9dd-9e98926442bb\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:09 GMT + - Fri, 07 Feb 2020 09:58:27 GMT etag: - - W/"a5fe56c0-1d06-46db-8866-c8776bd8d452" + - W/"fda33440-e742-45ca-a001-cc83a1a63b18" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e498ca66-82e9-415d-8ce9-73f262a73be1 + - b5834bca-b900-48f8-8a10-0ea125b7d89a status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"fda33440-e742-45ca-a001-cc83a1a63b18\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b61f5c0c-9e20-470b-a9dd-9e98926442bb\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Fri, 07 Feb 2020 09:58:27 GMT etag: - - W/"a5fe56c0-1d06-46db-8866-c8776bd8d452" + - W/"fda33440-e742-45ca-a001-cc83a1a63b18" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4775e686-2acb-4f98-98a3-824f7c808e54 + - 36b3213e-44d1-43ba-8b85-6f29286bc275 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"33a9e6a4-e299-4fdb-bcdb-488d234f9e63\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"b61f5c0c-9e20-470b-a9dd-9e98926442bb\"\ + ,\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/\\\"33a9e6a4-e299-4fdb-bcdb-488d234f9e63\\\"\"\ + ,\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/\\\"33a9e6a4-e299-4fdb-bcdb-488d234f9e63\\\ + \"\",\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/acc8619d-62de-44a9-a0cb-8abec8b537d4?api-version=2019-09-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:11 GMT + - Fri, 07 Feb 2020 09:58:28 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40d18d46-8888-4a9b-8820-ec26f9a1ff95 + - c79ad17a-f064-4fd3-bd1d-c035e608dfe1 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,13 +347,13 @@ 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 - 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/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/acc8619d-62de-44a9-a0cb-8abec8b537d4?api-version=2019-09-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 + - Fri, 07 Feb 2020 09:58:33 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76334951-9250-40f5-9b6e-0a2e831d8c8f + - 2b38ff57-46fc-4211-a8f2-1946ed90c4d4 status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"e75c44a8-f03f-407c-a38b-4222719b2853\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b61f5c0c-9e20-470b-a9dd-9e98926442bb\"\ + ,\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/\\\"e75c44a8-f03f-407c-a38b-4222719b2853\\\"\"\ + ,\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/\\\"e75c44a8-f03f-407c-a38b-4222719b2853\\\ + \"\",\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 + - Fri, 07 Feb 2020 09:58:33 GMT etag: - - W/"8d2e9f52-9a0d-4b73-b0e7-118ce0a25a9a" + - W/"e75c44a8-f03f-407c-a38b-4222719b2853" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2d9f472-c486-4701-92af-43110f37a765 + - bc2ed6f7-d439-4e58-8161-012301f8561a 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_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: !!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%3A58%3A40.5868157Z''\"","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/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/bbdb1dcf-6907-4a5e-a2b7-31fc1fa3e298?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 + - Fri, 07 Feb 2020 09:58:41 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4153178Z'" + - W/"datetime'2020-02-07T09%3A58%3A40.5868157Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' 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/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/bbdb1dcf-6907-4a5e-a2b7-31fc1fa3e298?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bbdb1dcf-6907-4a5e-a2b7-31fc1fa3e298","name":"bbdb1dcf-6907-4a5e-a2b7-31fc1fa3e298","status":"Succeeded","startTime":"2020-02-07T09:58:40.0920622Z","endTime":"2020-02-07T09:58:41.5059066Z","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 + - Fri, 07 Feb 2020 09:59:12 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_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: !!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%3A58%3A41.3875973Z''\"","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 + - Fri, 07 Feb 2020 09:59:13 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4733595Z'" + - W/"datetime'2020-02-07T09%3A58%3A41.3875973Z'" expires: - '-1' pragma: @@ -622,8 +631,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"size": 8796093022208, "serviceLevel": - "Standard"}}' + body: !!python/unicode '{"location": "westus2stage", "properties": {"serviceLevel": + "Standard", "size": 8796093022208}}' headers: Accept: - application/json @@ -634,36 +643,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A20.8991931Z''\"","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/16ecbe28-da6b-461e-aaed-4625c5a3335f?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 + - Fri, 07 Feb 2020 09:59:22 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.5807959Z'" + - W/"datetime'2020-02-07T09%3A59%3A20.8991931Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' 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/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/16ecbe28-da6b-461e-aaed-4625c5a3335f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/16ecbe28-da6b-461e-aaed-4625c5a3335f","name":"16ecbe28-da6b-461e-aaed-4625c5a3335f","status":"Succeeded","startTime":"2020-02-07T09:59:20.2834112Z","endTime":"2020-02-07T09:59:22.1062452Z","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 + - Fri, 07 Feb 2020 09:59:52 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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A21.9952641Z''\"","location":"westus2stage","properties":{"poolId":"c96c109d-f10e-20f7-2005-4785a197ad95","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 + - Fri, 07 Feb 2020 09:59:53 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.768929Z'" + - W/"datetime'2020-02-07T09%3A59%3A21.9952641Z'" expires: - '-1' pragma: @@ -792,8 +801,10 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "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"}}''' + body: !!python/unicode '{"properties": {"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", + "serviceLevel": "Standard", "creationToken": "cli-vol-000004"}, "location": + "westus2stage"}' headers: Accept: - application/json @@ -804,37 +815,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A00%3A17.5895689Z''\"","location":"westus2stage","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?api-version=2019-10-01 cache-control: - no-cache content-length: - - '911' + - '916' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:33 GMT + - Fri, 07 Feb 2020 10:00:18 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A32.9814351Z'" + - W/"datetime'2020-02-07T10%3A00%3A17.5895689Z'" expires: - '-1' pragma: @@ -848,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' x-powered-by: - ASP.NET status: @@ -869,24 +880,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/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: + - Fri, 07 Feb 2020 10:00: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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:01:20 GMT expires: - '-1' pragma: @@ -923,24 +988,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:01:50 GMT expires: - '-1' pragma: @@ -977,24 +1042,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:20 GMT expires: - '-1' pragma: @@ -1031,24 +1096,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:51 GMT expires: - '-1' pragma: @@ -1085,24 +1150,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:22 GMT expires: - '-1' pragma: @@ -1139,24 +1204,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:53 GMT expires: - '-1' pragma: @@ -1193,24 +1258,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:23 GMT expires: - '-1' pragma: @@ -1247,24 +1312,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:54 GMT expires: - '-1' pragma: @@ -1301,24 +1366,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:05:24 GMT expires: - '-1' pragma: @@ -1355,24 +1420,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:05:54 GMT expires: - '-1' pragma: @@ -1409,24 +1474,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:06:25 GMT expires: - '-1' pragma: @@ -1463,24 +1528,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:06:57 GMT expires: - '-1' pragma: @@ -1517,24 +1582,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:07:27 GMT expires: - '-1' pragma: @@ -1571,24 +1636,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:07:57 GMT expires: - '-1' pragma: @@ -1625,24 +1690,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:08:27 GMT expires: - '-1' pragma: @@ -1679,24 +1744,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:08:58 GMT expires: - '-1' pragma: @@ -1733,24 +1798,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:09:29 GMT expires: - '-1' pragma: @@ -1787,24 +1852,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/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Creating","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/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 + - Fri, 07 Feb 2020 10:10:00 GMT expires: - '-1' pragma: @@ -1841,26 +1906,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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/84a5ab2b-b3a7-410a-9f7a-5057111b1720?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/84a5ab2b-b3a7-410a-9f7a-5057111b1720","name":"84a5ab2b-b3a7-410a-9f7a-5057111b1720","status":"Succeeded","startTime":"2020-02-07T10:00:17.0957884Z","endTime":"2020-02-07T10:10:26.1382445Z","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 + - Fri, 07 Feb 2020 10:10: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/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: !!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-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-07T10%3A10%3A25.9506915Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","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_f2984e9e","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":"00c85962-bba3-7191-5877-7ff7e406c43b","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","startIp":"10.0.0.12","endIp":"10.0.0.12","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.12"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1562' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 10:10:31 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A17.3898612Z'" + - W/"datetime'2020-02-07T10%3A10%3A25.9506915Z'" expires: - '-1' pragma: @@ -1897,28 +2016,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A10%3A25.9506915Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","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_f2984e9e","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":"00c85962-bba3-7191-5877-7ff7e406c43b","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","startIp":"10.0.0.12","endIp":"10.0.0.12","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.12"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1554' + - '1562' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:48 GMT + - Fri, 07 Feb 2020 10:10:33 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A17.3898612Z'" + - W/"datetime'2020-02-07T10%3A10%3A25.9506915Z'" expires: - '-1' pragma: @@ -1941,11 +2060,12 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Standard", "usageThreshold": 214748364800, - "exportPolicy": {"rules": [{"ruleIndex": 3, "unixReadOnly": true, "unixReadWrite": - false, "cifs": false, "nfsv3": true, "nfsv41": false, "allowedClients": "1.2.3.0/24"}, - {"ruleIndex": 1, "unixReadOnly": false, "unixReadWrite": true, "cifs": false, - "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}}}' + body: !!python/unicode '{"properties": {"usageThreshold": 214748364800, "exportPolicy": + {"rules": [{"nfsv41": false, "allowedClients": "1.2.3.0/24", "cifs": false, + "unixReadOnly": true, "unixReadWrite": false, "ruleIndex": 3, "nfsv3": true}, + {"nfsv41": false, "allowedClients": "0.0.0.0/0", "cifs": false, "unixReadOnly": + false, "unixReadWrite": true, "ruleIndex": 1, "nfsv3": true}]}, "serviceLevel": + "Standard"}}' headers: Accept: - application/json @@ -1963,28 +2083,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A10%3A37.3077901Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","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_f2984e9e","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":"00c85962-bba3-7191-5877-7ff7e406c43b","fileSystemId":"00c85962-bba3-7191-5877-7ff7e406c43b","startIp":"10.0.0.12","endIp":"10.0.0.12","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.12"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1669' + - '1677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:23:51 GMT + - Fri, 07 Feb 2020 10:10:45 GMT etag: - - W/"datetime'2020-02-07T16%3A23%3A50.2810355Z'" + - W/"datetime'2020-02-07T10%3A10%3A37.3077901Z'" expires: - '-1' pragma: @@ -2002,7 +2122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' 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..d38dad157eb 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A32%3A07.1202135Z''\"","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/150116a9-8c95-49ba-8887-b899cb5766b9?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, 06 Feb 2020 08:32:08 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6025971Z'" + - W/"datetime'2020-02-06T08%3A32%3A07.1202135Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/150116a9-8c95-49ba-8887-b899cb5766b9?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/150116a9-8c95-49ba-8887-b899cb5766b9","name":"150116a9-8c95-49ba-8887-b899cb5766b9","status":"Succeeded","startTime":"2020-02-06T08:32:06.5151225Z","endTime":"2020-02-06T08:32:08.104328Z","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:09 GMT + - Thu, 06 Feb 2020 08:32:39 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A32%3A08.0010728Z''\"","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, 06 Feb 2020 08:32:40 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.0010728Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A32%3A08.0010728Z''\"","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, 06 Feb 2020 08:32:42 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.0010728Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A32%3A08.0010728Z''\"","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, 06 Feb 2020 08:32:44 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.6886586Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.0010728Z'" 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..4ab024f689c 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A08.9368181Z''\"","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/80f5bd5e-07a1-44b3-adc7-2fea4db75e1e?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, 06 Feb 2020 09:16:10 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.2610254Z'" + - W/"datetime'2020-02-06T09%3A16%3A08.9368181Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/80f5bd5e-07a1-44b3-adc7-2fea4db75e1e?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/80f5bd5e-07a1-44b3-adc7-2fea4db75e1e","name":"80f5bd5e-07a1-44b3-adc7-2fea4db75e1e","status":"Succeeded","startTime":"2020-02-06T09:16:08.2883675Z","endTime":"2020-02-06T09:16:09.6938838Z","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, 06 Feb 2020 09:16:41 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A09.5924578Z''\"","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, 06 Feb 2020 09:16:41 GMT etag: - - W/"datetime'2019-11-15T15%3A11%3A39.3290742Z'" + - W/"datetime'2020-02-06T09%3A16%3A09.5924578Z'" expires: - '-1' pragma: @@ -169,8 +169,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 @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A49.4543956Z''\"","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/87507c65-6eee-434c-a779-ad2808c2e91d?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, 06 Feb 2020 09:16:50 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.7632695Z'" + - W/"datetime'2020-02-06T09%3A16%3A49.4543956Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/87507c65-6eee-434c-a779-ad2808c2e91d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/87507c65-6eee-434c-a779-ad2808c2e91d","name":"87507c65-6eee-434c-a779-ad2808c2e91d","status":"Succeeded","startTime":"2020-02-06T09:16:49.0453946Z","endTime":"2020-02-06T09:16:50.5607831Z","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, 06 Feb 2020 09:17:21 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A50.4443621Z''\"","location":"westus2stage","properties":{"poolId":"5de53235-8f79-403f-6c64-61eca250298d","name":"cli000002/cli000003","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, 15 Nov 2019 15:12:47 GMT + - Thu, 06 Feb 2020 09:17:22 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-06T09%3A16%3A50.4443621Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T09%3A16%3A50.4443621Z''\"","location":"westus2stage","properties":{"poolId":"5de53235-8f79-403f-6c64-61eca250298d","name":"cli000002/cli000003","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, 15 Nov 2019 15:12:49 GMT + - Thu, 06 Feb 2020 09:17:43 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-06T09%3A16%3A50.4443621Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T09%3A16%3A50.4443621Z''\"","location":"westus2stage","properties":{"poolId":"5de53235-8f79-403f-6c64-61eca250298d","name":"cli000002/cli000003","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, 15 Nov 2019 15:12:51 GMT + - Thu, 06 Feb 2020 09:17:45 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A14.9514033Z'" + - W/"datetime'2020-02-06T09%3A16%3A50.4443621Z'" 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..216c2248be2 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -1,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 + 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-09-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: !!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/\\\"af1a482c-5bca-4420-a73c-2760f0a2bbff\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"aef4c801-3373-40c6-acca-52f4d38fc2ad\"\ + ,\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/e72e2aa6-9d52-4a9c-837a-5312b60acfe7?api-version=2019-09-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:04 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: - - 64982165-cdb3-44b3-858e-aeaf926e634d + - ea8cade4-6f6f-4d6f-8a20-5b9d7da5cc6b x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '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/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/e72e2aa6-9d52-4a9c-837a-5312b60acfe7?api-version=2019-09-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:17 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b6ea6bcc-d2dd-4ebf-aebd-2ae947a25db4 + - 8cd3e86a-ab6c-42d7-9648-7670bf0c48de 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 + 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-09-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: !!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/\\\"df8c509f-a01f-477b-9073-88f80604eb4e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"aef4c801-3373-40c6-acca-52f4d38fc2ad\"\ + ,\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/"b86ac01e-60db-4e4f-a091-700999bdc552" + - W/"df8c509f-a01f-477b-9073-88f80604eb4e" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aa23a98-2871-4479-982c-e9c5b05a2da8 + - d616f9d5-264a-4f96-a452-afefbf2a74df 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 + 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-09-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: !!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/\\\"df8c509f-a01f-477b-9073-88f80604eb4e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"aef4c801-3373-40c6-acca-52f4d38fc2ad\"\ + ,\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:18 GMT etag: - - W/"b86ac01e-60db-4e4f-a091-700999bdc552" + - W/"df8c509f-a01f-477b-9073-88f80604eb4e" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a730dd6-2d54-4646-9810-752f9e9b6e34 + - b1941e41-3faf-4db0-8283-65e4bb3a9422 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 + 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-09-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: !!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/\\\"a5e35017-a25b-4e4d-bbc6-1fa2d2d61139\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"aef4c801-3373-40c6-acca-52f4d38fc2ad\"\ + ,\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/\\\"a5e35017-a25b-4e4d-bbc6-1fa2d2d61139\\\"\"\ + ,\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/\\\"a5e35017-a25b-4e4d-bbc6-1fa2d2d61139\\\ + \"\",\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/6f8432f2-2ea5-4710-b76d-390623771043?api-version=2019-09-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:11 GMT + - Thu, 06 Feb 2020 11:12:20 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 143dd5ec-3533-4bdb-b716-a83839d25b0c + - de096580-993a-4445-9b55-5a1be269b552 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '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/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/6f8432f2-2ea5-4710-b76d-390623771043?api-version=2019-09-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:24 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12125218-8139-4aed-bf29-4a00e29a72ad + - d77d37c9-98f3-487e-a505-b5dd944343b0 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 + 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-09-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: !!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/\\\"fb883e5e-beab-4221-b9c2-5a5e0d5aeefd\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"aef4c801-3373-40c6-acca-52f4d38fc2ad\"\ + ,\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/\\\"fb883e5e-beab-4221-b9c2-5a5e0d5aeefd\\\"\"\ + ,\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/\\\"fb883e5e-beab-4221-b9c2-5a5e0d5aeefd\\\ + \"\",\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:24 GMT etag: - - W/"d33a171e-d2ea-4668-b7b1-7dfbbdd974f7" + - W/"fb883e5e-beab-4221-b9c2-5a5e0d5aeefd" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e0ef351-19e1-4122-9828-29792ba35911 + - a9506921-be19-432d-bf98-13f2c5375d47 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.4623513Z''\"","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.6974592Z''\"","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/a74d767d-cff9-47f2-8627-d635bbf72388?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 + - Thu, 06 Feb 2020 11:12:34 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.4623513Z'" + - W/"datetime'2020-02-06T11%3A12%3A33.6974592Z'" expires: - '-1' pragma: @@ -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/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/a74d767d-cff9-47f2-8627-d635bbf72388?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a74d767d-cff9-47f2-8627-d635bbf72388","name":"a74d767d-cff9-47f2-8627-d635bbf72388","status":"Succeeded","startTime":"2020-02-06T11:12:33.0374882Z","endTime":"2020-02-06T11:12:34.6171025Z","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.5193906Z''\"","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.4982158Z''\"","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 + - Thu, 06 Feb 2020 11:13:06 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A20.5193906Z'" + - W/"datetime'2020-02-06T11%3A12%3A34.4982158Z'" 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%3A55.50003Z''\"","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%3A11.7974527Z''\"","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/40ded888-7173-4310-9def-4cc765dc4508?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 + - Thu, 06 Feb 2020 11:13:12 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.50003Z'" + - W/"datetime'2020-02-06T11%3A13%3A11.7974527Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '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/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/40ded888-7173-4310-9def-4cc765dc4508?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40ded888-7173-4310-9def-4cc765dc4508","name":"40ded888-7173-4310-9def-4cc765dc4508","status":"Succeeded","startTime":"2020-02-06T11:13:11.115622Z","endTime":"2020-02-06T11:13:13.0299096Z","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' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:26 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%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: !!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.8964907Z''\"","location":"westus2stage","properties":{"poolId":"41a2491d-7373-8604-237b-2c208495d912","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 + - Thu, 06 Feb 2020 11:13:45 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A55.7702202Z'" + - W/"datetime'2020-02-06T11%3A13%3A12.8964907Z'" 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%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: !!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%3A54.1044222Z''\"","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/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/3059a278-dd32-4404-9e76-f03d057d6851?api-version=2019-10-01 cache-control: - no-cache content-length: - - '904' + - '909' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:31 GMT + - Thu, 06 Feb 2020 11:13:55 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A30.9560095Z'" + - W/"datetime'2020-02-06T11%3A13%3A54.1044222Z'" expires: - '-1' pragma: @@ -848,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' x-powered-by: - ASP.NET status: @@ -869,24 +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 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Creating","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:14:27 GMT expires: - '-1' pragma: @@ -923,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/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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Creating","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:14:57 GMT expires: - '-1' pragma: @@ -977,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/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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Creating","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:15:28 GMT expires: - '-1' pragma: @@ -1031,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/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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Creating","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:16:00 GMT expires: - '-1' pragma: @@ -1085,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/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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Creating","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:16:30 GMT expires: - '-1' pragma: @@ -1139,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/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/3059a278-dd32-4404-9e76-f03d057d6851?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3059a278-dd32-4404-9e76-f03d057d6851","name":"3059a278-dd32-4404-9e76-f03d057d6851","status":"Succeeded","startTime":"2020-02-06T11:13:53.4999719Z","endTime":"2020-02-06T11:16:42.6001828Z","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' + - '653' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:35 GMT + - Thu, 06 Feb 2020 11:17:01 GMT expires: - '-1' pragma: @@ -1193,26 +1203,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/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%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: !!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%3A16%3A42.4244348Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","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_7536990a","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":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","fileSystemId":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","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' + - '1552' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:17:35 GMT + - Thu, 06 Feb 2020 11:17:03 GMT etag: - - W/"datetime'2020-02-07T16%3A17%3A20.9917959Z'" + - W/"datetime'2020-02-06T11%3A16%3A42.4244348Z'" expires: - '-1' pragma: @@ -1235,7 +1245,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "44da9d2f-f9a3-4f52-3c67-c656771bdfc5"}}' + body: !!python/unicode '{"properties": {"fileSystemId": "7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c"}, + "location": "westus2stage"}' headers: Accept: - application/json @@ -1246,38 +1257,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","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/93c9d4db-4c47-4ea3-99ff-584e98096a3c?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 + - Thu, 06 Feb 2020 11:17:11 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/93c9d4db-4c47-4ea3-99ff-584e98096a3c?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1289,7 +1300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -1309,24 +1320,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/93c9d4db-4c47-4ea3-99ff-584e98096a3c?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93c9d4db-4c47-4ea3-99ff-584e98096a3c","name":"93c9d4db-4c47-4ea3-99ff-584e98096a3c","status":"Succeeded","startTime":"2020-02-06T11:17:10.4330169Z","endTime":"2020-02-06T11:17:13.5397212Z","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 + - Thu, 06 Feb 2020 11:17:43 GMT expires: - '-1' pragma: @@ -1362,24 +1373,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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":"9a385f4c-2670-ad6f-3592-8754d8d2fdd7","fileSystemId":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","name":"cli-sn-000005","created":"2020-02-06T11:17:10Z"}}' 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 + - Thu, 06 Feb 2020 11:17:44 GMT expires: - '-1' pragma: @@ -1415,26 +1426,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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":"9a385f4c-2670-ad6f-3592-8754d8d2fdd7","fileSystemId":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","name":"cli-sn-000005","created":"2020-02-06T11:17:10Z"}}' 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 + - Thu, 06 Feb 2020 11:17:47 GMT expires: - '-1' pragma: @@ -1470,26 +1481,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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":"9a385f4c-2670-ad6f-3592-8754d8d2fdd7","fileSystemId":"7b8eb982-ce76-26fb-0860-7bcdd0bd4b3c","name":"cli-sn-000005","created":"2020-02-06T11:17:10Z"}}' 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 + - Thu, 06 Feb 2020 11:17:49 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..df72318d728 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"5cb1b3bc-fd85-4c5b-9393-b4e9ec81e8c6\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5c027cda-6fe0-4b0e-8368-4220c512a4ae\"\ + ,\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/2cee179d-e310-449c-97bb-cb8959c4be2f?api-version=2019-09-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:43:52 GMT + - Fri, 07 Feb 2020 09:44:29 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45d89639-c4e5-4420-bbfd-992109be0a02 + - f526ada9-defa-498e-a0b5-c75d55662c8c x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' 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/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/2cee179d-e310-449c-97bb-cb8959c4be2f?api-version=2019-09-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:43:56 GMT + - Fri, 07 Feb 2020 09:44:32 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9c6c3d6-40c5-430e-a9a2-76718cbc028e + - ac17628a-d925-4aa2-90e1-0af19769e2e8 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"903867ba-80e8-41cb-916c-4298ddbe52ce\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5c027cda-6fe0-4b0e-8368-4220c512a4ae\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:57 GMT + - Fri, 07 Feb 2020 09:44:33 GMT etag: - - W/"36d86eab-25ba-44f3-b02d-adb2df9fc2fe" + - W/"903867ba-80e8-41cb-916c-4298ddbe52ce" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29bb6474-c16d-4767-bcf4-aad5225f7aa1 + - f0f39b63-4a65-43f3-a6e3-aeb158726b87 status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"903867ba-80e8-41cb-916c-4298ddbe52ce\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5c027cda-6fe0-4b0e-8368-4220c512a4ae\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:58 GMT + - Fri, 07 Feb 2020 09:44:33 GMT etag: - - W/"36d86eab-25ba-44f3-b02d-adb2df9fc2fe" + - W/"903867ba-80e8-41cb-916c-4298ddbe52ce" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 749af4e4-7787-4173-98e4-215bf973eed7 + - a5faaed2-ff58-4cd8-b80d-e0ee60b267f2 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"65d1edfa-03d2-49cd-8c9b-bb966ea990b1\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5c027cda-6fe0-4b0e-8368-4220c512a4ae\"\ + ,\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/\\\"65d1edfa-03d2-49cd-8c9b-bb966ea990b1\\\"\"\ + ,\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/\\\"65d1edfa-03d2-49cd-8c9b-bb966ea990b1\\\ + \"\",\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/e6866727-1d30-4c3d-aedc-765bfc69cba3?api-version=2019-09-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:43:58 GMT + - Fri, 07 Feb 2020 09:44:34 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a5f4664-f502-48bd-85c0-30c4182e6ae3 + - 8c3daf9b-5557-451b-9a7a-6b09e7e4312c x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -340,13 +347,13 @@ 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 - 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/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/e6866727-1d30-4c3d-aedc-765bfc69cba3?api-version=2019-09-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:44:02 GMT + - Fri, 07 Feb 2020 09:44:38 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c91b1ee-b6f4-4b6e-b094-2ff08d7091a4 + - afa23016-3066-43d3-a901-0ea9457fc54c status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"13a3e6f0-82ed-4a6d-a47f-a2334363ab9c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5c027cda-6fe0-4b0e-8368-4220c512a4ae\"\ + ,\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/\\\"13a3e6f0-82ed-4a6d-a47f-a2334363ab9c\\\"\"\ + ,\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/\\\"13a3e6f0-82ed-4a6d-a47f-a2334363ab9c\\\ + \"\",\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:44:03 GMT + - Fri, 07 Feb 2020 09:44:39 GMT etag: - - W/"6d5ad4a3-2147-45b7-881c-f80dc9777281" + - W/"13a3e6f0-82ed-4a6d-a47f-a2334363ab9c" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 838ba5c8-171c-413e-97fe-8025a59751df + - b456052a-f997-4916-bcc4-80bc26677b13 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_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: !!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%3A44%3A46.7986616Z''\"","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/e8606759-efcf-447f-b2a2-7a04acc29b81?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 + - Fri, 07 Feb 2020 09:44:47 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A08.7905717Z'" + - W/"datetime'2020-02-07T09%3A44%3A46.7986616Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1199' 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/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/e8606759-efcf-447f-b2a2-7a04acc29b81?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e8606759-efcf-447f-b2a2-7a04acc29b81","name":"e8606759-efcf-447f-b2a2-7a04acc29b81","status":"Succeeded","startTime":"2020-02-07T09:44:46.3852893Z","endTime":"2020-02-07T09:44:47.5952954Z","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:44:40 GMT + - Fri, 07 Feb 2020 09:45:18 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_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: !!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%3A44%3A47.4733206Z''\"","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 + - Fri, 07 Feb 2020 09:45:19 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A08.9907125Z'" + - W/"datetime'2020-02-07T09%3A44%3A47.4733206Z'" expires: - '-1' pragma: @@ -622,8 +631,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag2": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag2": "Value1"}}' headers: Accept: - application/json @@ -634,36 +643,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A45%3A27.5564797Z''\"","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/43045c00-816f-486d-851b-01e73a8447a6?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 + - Fri, 07 Feb 2020 09:45:28 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A48.9378531Z'" + - W/"datetime'2020-02-07T09%3A45%3A27.5564797Z'" expires: - '-1' pragma: @@ -697,24 +706,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/43045c00-816f-486d-851b-01e73a8447a6?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/43045c00-816f-486d-851b-01e73a8447a6","name":"43045c00-816f-486d-851b-01e73a8447a6","status":"Succeeded","startTime":"2020-02-07T09:45:27.1233638Z","endTime":"2020-02-07T09:45:28.6776129Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '614' + - '620' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:45:20 GMT + - Fri, 07 Feb 2020 09:45:59 GMT expires: - '-1' pragma: @@ -750,26 +759,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A45%3A28.5654645Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"poolId":"dbbb8e25-98c0-d16c-3937-461b4a0d4acd","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 + - Fri, 07 Feb 2020 09:46:00 GMT etag: - - W/"datetime'2020-02-07T16%3A44%3A49.2770915Z'" + - W/"datetime'2020-02-07T09%3A45%3A28.5654645Z'" expires: - '-1' pragma: @@ -792,11 +801,12 @@ 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: !!python/unicode '{"location": "westus2stage", "properties": {"subnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "protocolTypes": ["NFSv4.1"], "exportPolicy": {"rules": [{"nfsv41": true, "allowedClients": + "0.0.0.0/0", "cifs": false, "unixReadOnly": false, "unixReadWrite": true, "ruleIndex": + 1, "nfsv3": false}]}, "creationToken": "cli-vol-000004", "usageThreshold": 107374182400, + "serviceLevel": "Premium"}, "tags": {"Tag2": "Value1"}}' headers: Accept: - application/json @@ -807,37 +817,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T09%3A46%3A07.7057042Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?api-version=2019-10-01 cache-control: - no-cache content-length: - - '1118' + - '1123' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:45:27 GMT + - Fri, 07 Feb 2020 09:46:08 GMT etag: - - W/"datetime'2020-02-07T16%3A45%3A26.1810907Z'" + - W/"datetime'2020-02-07T09%3A46%3A07.7057042Z'" expires: - '-1' pragma: @@ -851,7 +861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -872,186 +882,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 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:47:28 GMT + - Fri, 07 Feb 2020 09:46:40 GMT expires: - '-1' pragma: @@ -1088,24 +936,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:47:59 GMT + - Fri, 07 Feb 2020 09:47:10 GMT expires: - '-1' pragma: @@ -1142,24 +990,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:47:59 GMT expires: - '-1' pragma: @@ -1196,24 +1044,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:48:29 GMT expires: - '-1' pragma: @@ -1250,24 +1098,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:49:01 GMT expires: - '-1' pragma: @@ -1304,24 +1152,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:49:31 GMT expires: - '-1' pragma: @@ -1358,24 +1206,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:50:02 GMT expires: - '-1' pragma: @@ -1412,24 +1260,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Creating","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:50:32 GMT expires: - '-1' pragma: @@ -1466,24 +1314,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/b5cd3038-e2cd-4c9f-adc4-26f7a796f467?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b5cd3038-e2cd-4c9f-adc4-26f7a796f467","name":"b5cd3038-e2cd-4c9f-adc4-26f7a796f467","status":"Succeeded","startTime":"2020-02-07T09:46:07.2016198Z","endTime":"2020-02-07T09:50:46.8030217Z","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:51:32 GMT + - Fri, 07 Feb 2020 09:51:04 GMT expires: - '-1' pragma: @@ -1520,26 +1368,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-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-07T09%3A50%3A46.6161812Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":294912,"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_5823cafb","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":"3313fdad-acde-03b4-f09a-748bfd4a13d6","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1589' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:33 GMT + - Fri, 07 Feb 2020 09:51:04 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-07T09%3A50%3A46.6161812Z'" expires: - '-1' pragma: @@ -1575,28 +1423,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T09%3A50%3A46.6161812Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":294912,"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_5823cafb","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":"3313fdad-acde-03b4-f09a-748bfd4a13d6","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1589' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:35 GMT + - Fri, 07 Feb 2020 09:51:06 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-07T09%3A50%3A46.6161812Z'" expires: - '-1' pragma: @@ -1632,28 +1480,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T09%3A50%3A46.6161812Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"usedBytes":294912,"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_5823cafb","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":"3313fdad-acde-03b4-f09a-748bfd4a13d6","fileSystemId":"3313fdad-acde-03b4-f09a-748bfd4a13d6","startIp":"10.0.0.7","endIp":"10.0.0.7","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.7"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1584' + - '1589' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:51:36 GMT + - Fri, 07 Feb 2020 09:51:08 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A16.5329119Z'" + - W/"datetime'2020-02-07T09%3A50%3A46.6161812Z'" 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..86b648dab1c 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A32%3A07.8689443Z''\"","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/7971072f-6343-401f-b62c-307d2b59fd85?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, 06 Feb 2020 08:32:08 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.1412692Z'" + - W/"datetime'2020-02-06T08%3A32%3A07.8689443Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/7971072f-6343-401f-b62c-307d2b59fd85?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7971072f-6343-401f-b62c-307d2b59fd85","name":"7971072f-6343-401f-b62c-307d2b59fd85","status":"Succeeded","startTime":"2020-02-06T08:32:07.3556255Z","endTime":"2020-02-06T08:32:08.6578546Z","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:08 GMT + - Thu, 06 Feb 2020 08:32:40 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A32%3A08.569678Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '478' + - '482' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:09 GMT + - Thu, 06 Feb 2020 08:32:40 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A37.2003112Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.569678Z'" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A32%3A48.2805853Z''\"","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/dd436e17-1b4a-4b1d-8ade-f5904505e162?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, 06 Feb 2020 08:32:49 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.6976263Z'" + - W/"datetime'2020-02-06T08%3A32%3A48.2805853Z'" expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/dd436e17-1b4a-4b1d-8ade-f5904505e162?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dd436e17-1b4a-4b1d-8ade-f5904505e162","name":"dd436e17-1b4a-4b1d-8ade-f5904505e162","status":"Succeeded","startTime":"2020-02-06T08:32:47.853132Z","endTime":"2020-02-06T08:32:49.0367494Z","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, 06 Feb 2020 08:33:20 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A32%3A48.9472369Z''\"","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, 06 Feb 2020 08:33:20 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.7546673Z'" + - W/"datetime'2020-02-06T08%3A32%3A48.9472369Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A32%3A08.569678Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000002","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-02-06T08%3A32%3A48.9472369Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"name":"cli000003","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '969' + - '978' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:47 GMT + - Thu, 06 Feb 2020 08:33:21 GMT expires: - '-1' pragma: @@ -408,30 +408,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/54dda74b-421e-4f7c-9b41-f6a297f12df8?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:09:49 GMT + - Thu, 06 Feb 2020 08:33:24 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/54dda74b-421e-4f7c-9b41-f6a297f12df8?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/54dda74b-421e-4f7c-9b41-f6a297f12df8?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/54dda74b-421e-4f7c-9b41-f6a297f12df8","name":"54dda74b-421e-4f7c-9b41-f6a297f12df8","status":"Succeeded","startTime":"2020-02-06T08:33:24.2126274Z","endTime":"2020-02-06T08:33:25.2023528Z","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, 06 Feb 2020 08:33:55 GMT expires: - '-1' pragma: @@ -518,30 +518,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/ff67ee0b-bbf5-42bd-a5cd-1ed5dda2e561?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:10:24 GMT + - Thu, 06 Feb 2020 08:33:59 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/ff67ee0b-bbf5-42bd-a5cd-1ed5dda2e561?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/ff67ee0b-bbf5-42bd-a5cd-1ed5dda2e561?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ff67ee0b-bbf5-42bd-a5cd-1ed5dda2e561","name":"ff67ee0b-bbf5-42bd-a5cd-1ed5dda2e561","status":"Succeeded","startTime":"2020-02-06T08:33:59.5904505Z","endTime":"2020-02-06T08:34:00.6529682Z","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, 06 Feb 2020 08:34:31 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"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, 06 Feb 2020 08:34: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 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..0db1d445014 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_mount_targets.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -18,26 +18,28 @@ 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 - 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_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"734786ed-1177-4589-a986-2ccbb23e38ef\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5d68b433-c7b1-4889-ad0d-b503e96bbf69\"\ + ,\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/e1ba3296-ebca-4cc3-8017-5cba36af662c?api-version=2019-09-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:06 GMT + - Thu, 06 Feb 2020 10:53:43 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1dfe9b18-4369-4e19-96ec-bce7a09fd5b7 + - 08f36025-2c83-4599-aa37-a30495f3f557 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -78,13 +80,13 @@ 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 - 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/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/e1ba3296-ebca-4cc3-8017-5cba36af662c?api-version=2019-09-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:10 GMT + - Thu, 06 Feb 2020 10:53:47 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ccb2dc1-fb0c-4c58-9b84-b1411c89438c + - 19908923-972d-4ec4-8d80-5fc753285af5 status: code: 200 message: OK @@ -128,21 +130,23 @@ 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 - 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_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"5c93a798-f4a3-4d42-a6fc-0ee22506c3b7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5d68b433-c7b1-4889-ad0d-b503e96bbf69\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:10 GMT + - Thu, 06 Feb 2020 10:53:47 GMT etag: - - W/"68d2d541-f3cb-4e59-b154-0f3f5eb3725a" + - W/"5c93a798-f4a3-4d42-a6fc-0ee22506c3b7" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dae6cf54-bee5-4918-950e-e40ecf36fd79 + - 5032c6e8-7d22-44ad-b917-dbe984c394b6 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_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"5c93a798-f4a3-4d42-a6fc-0ee22506c3b7\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5d68b433-c7b1-4889-ad0d-b503e96bbf69\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:12 GMT + - Thu, 06 Feb 2020 10:53:48 GMT etag: - - W/"68d2d541-f3cb-4e59-b154-0f3f5eb3725a" + - W/"5c93a798-f4a3-4d42-a6fc-0ee22506c3b7" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edd48254-ab64-4984-9830-76cd7011cc92 + - 17ab6935-39f0-413a-a7b7-838fb62836ab status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-lefr-01"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-lefr-01"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.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_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}" + 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-09-01 + response: + body: + string: !!python/unicode "{\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/\\\"5645b79c-a6a2-43d1-ac29-9d2b77752a78\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5d68b433-c7b1-4889-ad0d-b503e96bbf69\"\ + ,\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/\\\"5645b79c-a6a2-43d1-ac29-9d2b77752a78\\\"\"\ + ,\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/\\\"5645b79c-a6a2-43d1-ac29-9d2b77752a78\\\ + \"\",\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/49ac22a0-fd34-4960-9619-626c5562e480?api-version=2019-09-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 10:53:50 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8dff4331-ac7f-409e-9ffc-7bc2150319ea + - 730e5766-cc99-4b42-8e3a-23c33f7856d7 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' 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/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/49ac22a0-fd34-4960-9619-626c5562e480?api-version=2019-09-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:16 GMT + - Thu, 06 Feb 2020 10:53:54 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f83312a-8785-4357-aebc-26af146f631f + - 729a441c-fcf2-4f5f-b030-70127fe1c993 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 - 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}" + - 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_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01?api-version=2019-09-01 + response: + body: + string: !!python/unicode "{\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/\\\"c73c18bb-a122-4636-bd45-40354cc48172\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5d68b433-c7b1-4889-ad0d-b503e96bbf69\"\ + ,\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/\\\"c73c18bb-a122-4636-bd45-40354cc48172\\\"\"\ + ,\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/\\\"c73c18bb-a122-4636-bd45-40354cc48172\\\ + \"\",\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:16 GMT + - Thu, 06 Feb 2020 10:53:55 GMT etag: - - W/"3182bb78-817b-40bc-b9b1-7464f3422c90" + - W/"c73c18bb-a122-4636-bd45-40354cc48172" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63667370-c9b9-4c86-92a0-88b900706ceb + - b57449e9-5c6e-4188-af09-6108f806bdc9 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_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: !!python/unicode '{"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-06T10%3A54%3A03.8192358Z''\"","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/b622a672-bb8a-4558-9298-eed618ac5d16?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 + - Thu, 06 Feb 2020 10:54:04 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.5000809Z'" + - W/"datetime'2020-02-06T10%3A54%3A03.8192358Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' 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/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/b622a672-bb8a-4558-9298-eed618ac5d16?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b622a672-bb8a-4558-9298-eed618ac5d16","name":"b622a672-bb8a-4558-9298-eed618ac5d16","status":"Succeeded","startTime":"2020-02-06T10:54:03.2792186Z","endTime":"2020-02-06T10:54:04.8929108Z","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 + - Thu, 06 Feb 2020 10:54:36 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_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: !!python/unicode '{"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-06T10%3A54%3A04.654026Z''\"","location":"westus2stage","properties":{"name":"cli-acc-lefr-01","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '426' + - '430' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:53 GMT + - Thu, 06 Feb 2020 10:54:36 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.6381785Z'" + - W/"datetime'2020-02-06T10%3A54%3A04.654026Z'" 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_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: !!python/unicode '{"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-06T10%3A54%3A45.519626Z''\"","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/e6391333-200b-4994-adc9-424cf0061194?api-version=2019-10-01 cache-control: - no-cache content-length: - - '508' + - '512' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:13:59 GMT + - Thu, 06 Feb 2020 10:54:46 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A58.5501832Z'" + - W/"datetime'2020-02-06T10%3A54%3A45.519626Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' 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/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/e6391333-200b-4994-adc9-424cf0061194?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e6391333-200b-4994-adc9-424cf0061194","name":"e6391333-200b-4994-adc9-424cf0061194","status":"Succeeded","startTime":"2020-02-06T10:54:44.9329223Z","endTime":"2020-02-06T10:54:46.7237275Z","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 + - Thu, 06 Feb 2020 10:55:18 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_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: !!python/unicode '{"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-06T10%3A54%3A46.6196657Z''\"","location":"westus2stage","properties":{"poolId":"90d0f745-d508-020a-746f-8988bc52c8ac","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 + - Thu, 06 Feb 2020 10:55:19 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A58.7883504Z'" + - W/"datetime'2020-02-06T10%3A54%3A46.6196657Z'" expires: - '-1' pragma: @@ -792,8 +801,10 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "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"}}''' + body: !!python/unicode '{"properties": {"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", + "serviceLevel": "Premium", "creationToken": "cli-volume-lefr-01"}, "location": + "westus2stage"}' headers: Accept: - application/json @@ -804,37 +815,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T10%3A55%3A28.918614Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-volume-lefr-01","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_mounttarget_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-01/subnets/cli-subnet-lefr-01","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?api-version=2019-10-01 cache-control: - no-cache content-length: - - '852' + - '856' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:14:35 GMT + - Thu, 06 Feb 2020 10:55:29 GMT etag: - - W/"datetime'2020-02-07T16%3A14%3A35.1769864Z'" + - W/"datetime'2020-02-06T10%3A55%3A28.918614Z'" expires: - '-1' pragma: @@ -848,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' x-powered-by: - ASP.NET status: @@ -869,2778 +880,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/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:15:06 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-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:15:37 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-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:16: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/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:16: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/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:17:08 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-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: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 create - Connection: - - 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:18: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/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:18:42 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-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: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 create - Connection: - - 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:19:42 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.6.8 (Windows-10-10.0.18362-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:20: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/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:20: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: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 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Creating","startTime":"2020-02-06T10:55:28.4288873Z","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:41:01 GMT + - Thu, 06 Feb 2020 10:56:01 GMT expires: - '-1' pragma: @@ -3677,24 +934,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/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Creating","startTime":"2020-02-06T10:55:28.4288873Z","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:41:32 GMT + - Thu, 06 Feb 2020 10:56:31 GMT expires: - '-1' pragma: @@ -3731,24 +988,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/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Creating","startTime":"2020-02-06T10:55:28.4288873Z","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:42:02 GMT + - Thu, 06 Feb 2020 10:57:02 GMT expires: - '-1' pragma: @@ -3785,24 +1042,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/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Creating","startTime":"2020-02-06T10:55:28.4288873Z","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:42:32 GMT + - Thu, 06 Feb 2020 10:57:33 GMT expires: - '-1' pragma: @@ -3839,24 +1096,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/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Creating","startTime":"2020-02-06T10:55:28.4288873Z","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:43:02 GMT + - Thu, 06 Feb 2020 10:58:03 GMT expires: - '-1' pragma: @@ -3893,24 +1150,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/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/f54f0bbf-2c76-4f01-8259-74812d0eff0d?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":"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"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f54f0bbf-2c76-4f01-8259-74812d0eff0d","name":"f54f0bbf-2c76-4f01-8259-74812d0eff0d","status":"Succeeded","startTime":"2020-02-06T10:55:28.4288873Z","endTime":"2020-02-06T10:58:12.0107302Z","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' + - '630' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:33 GMT + - Thu, 06 Feb 2020 10:58:34 GMT expires: - '-1' pragma: @@ -3947,26 +1204,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/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%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"}]}}' + string: !!python/unicode '{"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-06T10%3A58%3A11.9095522Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"d693ae56-cf87-c1db-3483-88fd831ad053","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_a6017745","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":"d693ae56-cf87-c1db-3483-88fd831ad053","fileSystemId":"d693ae56-cf87-c1db-3483-88fd831ad053","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' + - '1494' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:34 GMT + - Thu, 06 Feb 2020 10:58:35 GMT etag: - - W/"datetime'2020-02-07T16%3A43%3A15.7311901Z'" + - W/"datetime'2020-02-06T10%3A58%3A11.9095522Z'" expires: - '-1' pragma: @@ -4002,26 +1259,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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/d693ae56-cf87-c1db-3483-88fd831ad053","name":"cli-acc-lefr-01/cli-pool-lefr-01/cli-volume-lefr-01/d693ae56-cf87-c1db-3483-88fd831ad053","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2stage","properties":{"provisioningState":"Succeeded","mountTargetId":"d693ae56-cf87-c1db-3483-88fd831ad053","fileSystemId":"d693ae56-cf87-c1db-3483-88fd831ad053","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: - - '781' + - '786' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:43:36 GMT + - Thu, 06 Feb 2020 10:58:39 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..f75dd34b825 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A19%3A32.1172915Z''\"","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/4566a245-020e-4e35-ae83-060b18fb91dd?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:14:49 GMT + - Thu, 06 Feb 2020 09:19:33 GMT etag: - - W/"datetime'2019-11-15T15%3A14%3A49.1320218Z'" + - W/"datetime'2020-02-06T09%3A19%3A32.1172915Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/4566a245-020e-4e35-ae83-060b18fb91dd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4566a245-020e-4e35-ae83-060b18fb91dd","name":"4566a245-020e-4e35-ae83-060b18fb91dd","status":"Succeeded","startTime":"2020-02-06T09:19:31.5279483Z","endTime":"2020-02-06T09:19:33.0337891Z","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, 06 Feb 2020 09:20: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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A19%3A32.9170768Z''\"","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:15:20 GMT + - Thu, 06 Feb 2020 09:20:04 GMT etag: - - W/"datetime'2019-11-15T15%3A14%3A49.1950662Z'" + - W/"datetime'2020-02-06T09%3A19%3A32.9170768Z'" 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: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1"}}' 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A20%3A11.4507177Z''\"","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/f12e85b2-0fb7-4585-92a8-2b2bbc997cd9?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, 06 Feb 2020 09:20:11 GMT etag: - - W/"datetime'2019-11-15T15%3A15%3A25.5569212Z'" + - W/"datetime'2020-02-06T09%3A20%3A11.4507177Z'" 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 --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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/f12e85b2-0fb7-4585-92a8-2b2bbc997cd9?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f12e85b2-0fb7-4585-92a8-2b2bbc997cd9","name":"f12e85b2-0fb7-4585-92a8-2b2bbc997cd9","status":"Succeeded","startTime":"2020-02-06T09:20:11.0234828Z","endTime":"2020-02-06T09:20:12.6652825Z","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, 06 Feb 2020 09:21:05 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A20%3A12.5577992Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7ec24be8-dffd-586f-29e8-be0b93bf5eea","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, 06 Feb 2020 09:21:06 GMT etag: - - W/"datetime'2019-11-15T15%3A15%3A25.8241111Z'" + - W/"datetime'2020-02-06T09%3A20%3A12.5577992Z'" 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: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1"}}' 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A21%3A14.2710827Z''\"","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/8eb22c84-657c-4c7b-b029-93ea8e33907f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '566' + - '572' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:16:02 GMT + - Thu, 06 Feb 2020 09:21:15 GMT etag: - - W/"datetime'2019-11-15T15%3A16%3A02.710332Z'" + - W/"datetime'2020-02-06T09%3A21%3A14.2710827Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/8eb22c84-657c-4c7b-b029-93ea8e33907f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8eb22c84-657c-4c7b-b029-93ea8e33907f","name":"8eb22c84-657c-4c7b-b029-93ea8e33907f","status":"Succeeded","startTime":"2020-02-06T09:21:13.7766453Z","endTime":"2020-02-06T09:21:15.3800544Z","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, 06 Feb 2020 09:21:46 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A21%3A15.2710585Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7a6e59a7-d244-79b8-e7d1-64efdb740f44","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, 06 Feb 2020 09:21:47 GMT etag: - - W/"datetime'2019-11-15T15%3A16%3A02.8624401Z'" + - W/"datetime'2020-02-06T09%3A21%3A15.2710585Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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''2020-02-06T09%3A20%3A12.5577992Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7ec24be8-dffd-586f-29e8-be0b93bf5eea","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''2020-02-06T09%3A21%3A15.2710585Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"7a6e59a7-d244-79b8-e7d1-64efdb740f44","name":"cli000002/cli000004","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, 06 Feb 2020 09:21:49 GMT expires: - '-1' pragma: @@ -579,30 +579,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/7d49ecbe-c3df-49fe-b301-eebd464a4e2a?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:16:39 GMT + - Thu, 06 Feb 2020 09:21:53 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/7d49ecbe-c3df-49fe-b301-eebd464a4e2a?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/7d49ecbe-c3df-49fe-b301-eebd464a4e2a?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7d49ecbe-c3df-49fe-b301-eebd464a4e2a","name":"7d49ecbe-c3df-49fe-b301-eebd464a4e2a","status":"Succeeded","startTime":"2020-02-06T09:21:53.5854151Z","endTime":"2020-02-06T09:21:54.6465042Z","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, 06 Feb 2020 09:22:24 GMT expires: - '-1' pragma: @@ -689,30 +689,30 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: '' + 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/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/fa22203d-5953-4c94-8c04-244d6d3ec7a3?api-version=2019-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 15 Nov 2019 15:17:14 GMT + - Thu, 06 Feb 2020 09:22:28 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/fa22203d-5953-4c94-8c04-244d6d3ec7a3?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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/fa22203d-5953-4c94-8c04-244d6d3ec7a3?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fa22203d-5953-4c94-8c04-244d6d3ec7a3","name":"fa22203d-5953-4c94-8c04-244d6d3ec7a3","status":"Succeeded","startTime":"2020-02-06T09:22:28.4482038Z","endTime":"2020-02-06T09:22:29.2557657Z","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, 06 Feb 2020 09:22:59 GMT expires: - '-1' pragma: @@ -797,15 +797,15 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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":[]}' + string: !!python/unicode '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -816,7 +816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:17:48 GMT + - Thu, 06 Feb 2020 09:23:02 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..6083685018a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -1,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 + 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-09-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: !!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/\\\"bcac91a7-b908-481c-9813-ebf732608205\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"234f1cc7-67bc-4abf-8dfe-fff587305b4b\"\ + ,\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/a975ee0c-b1ef-4750-aa28-e9b46d67fa0b?api-version=2019-09-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: - - 850f0d83-1146-4fda-a231-425c827fbf25 + - 3f5f4861-7d5a-496c-8953-b9bc3709f8e0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '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/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/a975ee0c-b1ef-4750-aa28-e9b46d67fa0b?api-version=2019-09-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: - - 9d0333b9-08b7-45a1-9210-60b5d03eec42 + - 0dd50553-7a22-4686-9833-2708b67e76d8 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 + 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-09-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: !!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/\\\"d7d94ae8-9cd3-49b5-a176-ba7dc536c30c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"234f1cc7-67bc-4abf-8dfe-fff587305b4b\"\ + ,\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/"387a265a-b9b1-47b2-a17a-2ce15769ef49" + - W/"d7d94ae8-9cd3-49b5-a176-ba7dc536c30c" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6781eeca-f902-43cb-8870-ff2c41a1a4cb + - cb27f731-2e41-41c9-8a74-0098bdbe3c77 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 + 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-09-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: !!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/\\\"d7d94ae8-9cd3-49b5-a176-ba7dc536c30c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"234f1cc7-67bc-4abf-8dfe-fff587305b4b\"\ + ,\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:18 GMT etag: - - W/"387a265a-b9b1-47b2-a17a-2ce15769ef49" + - W/"d7d94ae8-9cd3-49b5-a176-ba7dc536c30c" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc3565e2-4acb-47d3-bcd0-868932fe76a0 + - 54453f9e-a13a-469b-b695-d0628c9155c0 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/\\\"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}" + 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-09-01 + response: + body: + 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/\\\"a7d0aed9-ca03-47fb-96b9-8ac759319e12\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"234f1cc7-67bc-4abf-8dfe-fff587305b4b\"\ + ,\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/\\\"a7d0aed9-ca03-47fb-96b9-8ac759319e12\\\"\"\ + ,\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/\\\"a7d0aed9-ca03-47fb-96b9-8ac759319e12\\\ + \"\",\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/99367f07-07d6-48ab-9b9d-f82ab7b88b19?api-version=2019-09-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:19 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f96eb11a-0b7e-4c48-af5b-c8d4f0712777 + - d582130e-16ac-4892-9b03-ea1827eeac84 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' 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/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/99367f07-07d6-48ab-9b9d-f82ab7b88b19?api-version=2019-09-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:16 GMT + - Thu, 06 Feb 2020 11:12:24 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 900ce8c3-db73-4ce2-91b5-5c4389009dd1 + - 5cd067a7-54a8-4e06-8df1-b98b7d08a4de 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 - 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}" + - 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-09-01 + response: + body: + 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/\\\"95af698f-c577-409e-9a02-57e0ffaf36b4\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"234f1cc7-67bc-4abf-8dfe-fff587305b4b\"\ + ,\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/\\\"95af698f-c577-409e-9a02-57e0ffaf36b4\\\"\"\ + ,\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/\\\"95af698f-c577-409e-9a02-57e0ffaf36b4\\\ + \"\",\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:16 GMT + - Thu, 06 Feb 2020 11:12:24 GMT etag: - - W/"224f981a-1ef4-4aff-bf7c-c1b1e7064f57" + - W/"95af698f-c577-409e-9a02-57e0ffaf36b4" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6cdfc6c0-b296-4917-9e24-1a9569426bda + - 2fe07642-d170-40b3-bb7b-2278c7370862 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%3A21.3249585Z''\"","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%3A32.5023294Z''\"","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/eaba5ea6-5598-498c-891d-27bab99cde29?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 + - Thu, 06 Feb 2020 11:12:33 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.3249585Z'" + - W/"datetime'2020-02-06T11%3A12%3A32.5023294Z'" expires: - '-1' pragma: @@ -507,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' 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/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/eaba5ea6-5598-498c-891d-27bab99cde29?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eaba5ea6-5598-498c-891d-27bab99cde29","name":"eaba5ea6-5598-498c-891d-27bab99cde29","status":"Succeeded","startTime":"2020-02-06T11:12:32.0660666Z","endTime":"2020-02-06T11:12:33.3292356Z","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 + - Thu, 06 Feb 2020 11:13:05 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%3A21.5481155Z''\"","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%3A33.1579492Z''\"","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:53 GMT + - Thu, 06 Feb 2020 11:13:05 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A21.5481155Z'" + - W/"datetime'2020-02-06T11%3A12%3A33.1579492Z'" 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%3A56.5287581Z''\"","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%3A13.7322807Z''\"","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/a3fdc68c-56a6-4a43-b257-6fa597ae88e0?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 + - Thu, 06 Feb 2020 11:13:14 GMT etag: - - W/"datetime'2020-02-07T16%3A13%3A56.5287581Z'" + - W/"datetime'2020-02-06T11%3A13%3A13.7322807Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' 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/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/a3fdc68c-56a6-4a43-b257-6fa597ae88e0?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a3fdc68c-56a6-4a43-b257-6fa597ae88e0","name":"a3fdc68c-56a6-4a43-b257-6fa597ae88e0","status":"Succeeded","startTime":"2020-02-06T11:13:13.2486361Z","endTime":"2020-02-06T11:13:14.9422654Z","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:27 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%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: !!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%3A14.8303185Z''\"","location":"westus2stage","properties":{"poolId":"fafe5e00-5bcd-db24-75c0-7fc10d13b113","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%3A56.6588508Z'" + - W/"datetime'2020-02-06T11%3A13%3A14.8303185Z'" 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%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: !!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.7960201Z''\"","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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?api-version=2019-10-01 cache-control: - no-cache content-length: - - '904' + - '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%3A32.8793632Z'" + - W/"datetime'2020-02-06T11%3A13%3A55.7960201Z'" expires: - '-1' pragma: @@ -848,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '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/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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:14:59 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - Thu, 06 Feb 2020 11:15:59 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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 + - 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:09 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:38 GMT + - Thu, 06 Feb 2020 11:17:32 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:10 GMT + - Thu, 06 Feb 2020 11:18:02 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:40 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:11 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:41 GMT + - Thu, 06 Feb 2020 11:19:35 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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:22:13 GMT + - Thu, 06 Feb 2020 11:20:05 GMT expires: - '-1' pragma: @@ -1679,24 +1527,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:22:43 GMT + - Thu, 06 Feb 2020 11:20:36 GMT expires: - '-1' pragma: @@ -1733,24 +1581,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:23:14 GMT + - Thu, 06 Feb 2020 11:21:07 GMT expires: - '-1' pragma: @@ -1787,24 +1635,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:23:44 GMT + - Thu, 06 Feb 2020 11:21:38 GMT expires: - '-1' pragma: @@ -1841,24 +1689,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:24:15 GMT + - Thu, 06 Feb 2020 11:22:10 GMT expires: - '-1' pragma: @@ -1895,24 +1743,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:24:45 GMT + - Thu, 06 Feb 2020 11:22:41 GMT expires: - '-1' pragma: @@ -1949,24 +1797,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Creating","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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:25:16 GMT + - Thu, 06 Feb 2020 11:23:11 GMT expires: - '-1' pragma: @@ -2003,24 +1851,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/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/884dca40-4479-4b49-a24f-9c96c7b9a4fd?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/884dca40-4479-4b49-a24f-9c96c7b9a4fd","name":"884dca40-4479-4b49-a24f-9c96c7b9a4fd","status":"Succeeded","startTime":"2020-02-06T11:13:55.2936976Z","endTime":"2020-02-06T11:23:19.0197468Z","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:25:46 GMT + - Thu, 06 Feb 2020 11:23:43 GMT expires: - '-1' pragma: @@ -2057,24 +1905,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/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: !!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%3A23%3A18.8284665Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","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_c347da66","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":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","startIp":"10.5.0.6","endIp":"10.5.0.6","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.6"}]}}' 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:26:17 GMT + - Thu, 06 Feb 2020 11:23:44 GMT + etag: + - W/"datetime'2020-02-06T11%3A23%3A18.8284665Z'" expires: - '-1' pragma: @@ -2097,1563 +1947,50 @@ interactions: code: 200 message: OK - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a"}, + "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/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: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 + - -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","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/32e6a654-af3b-45bc-945f-686fb9ca28c9?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:27:18 GMT + - Thu, 06 Feb 2020 11: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 create - Connection: - - 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/32e6a654-af3b-45bc-945f-686fb9ca28c9?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3665,7 +2002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -3685,24 +2022,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/32e6a654-af3b-45bc-945f-686fb9ca28c9?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/32e6a654-af3b-45bc-945f-686fb9ca28c9","name":"32e6a654-af3b-45bc-945f-686fb9ca28c9","status":"Succeeded","startTime":"2020-02-06T11:23:51.7352659Z","endTime":"2020-02-06T11:23:54.6735883Z","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' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:40:36 GMT + - Thu, 06 Feb 2020 11:24:24 GMT expires: - '-1' pragma: @@ -3738,24 +2075,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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":"266522d4-09e4-ed38-e1c8-8183bcc08cdb","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","name":"cli-sn-000005","created":"2020-02-06T11:23:52Z"}}' 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 + - Thu, 06 Feb 2020 11:24:25 GMT expires: - '-1' pragma: @@ -3778,7 +2115,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"fileSystemId": "205fda2d-8f4d-d12b-05e1-3c0677bfd975"}}' + body: !!python/unicode '{"properties": {"fileSystemId": "aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a"}, + "location": "westus2stage"}' headers: Accept: - application/json @@ -3789,38 +2127,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","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/e60efba4-2770-4b50-af79-b71ddfef6bfc?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 + - Thu, 06 Feb 2020 11:24:34 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/e60efba4-2770-4b50-af79-b71ddfef6bfc?api-version=2019-10-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3832,7 +2170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' x-powered-by: - ASP.NET status: @@ -3852,24 +2190,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/e60efba4-2770-4b50-af79-b71ddfef6bfc?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e60efba4-2770-4b50-af79-b71ddfef6bfc","name":"e60efba4-2770-4b50-af79-b71ddfef6bfc","status":"Succeeded","startTime":"2020-02-06T11:24:32.6865816Z","endTime":"2020-02-06T11:24:35.0583709Z","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 + - Thu, 06 Feb 2020 11:25:05 GMT expires: - '-1' pragma: @@ -3905,24 +2243,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-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":"a9e59e65-5b46-6b2b-e637-4a2f67302fcf","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","name":"cli-sn-000006","created":"2020-02-06T11:24:33Z"}}' 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 + - Thu, 06 Feb 2020 11:25:06 GMT expires: - '-1' pragma: @@ -3958,26 +2296,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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":"266522d4-09e4-ed38-e1c8-8183bcc08cdb","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","name":"cli-sn-000005","created":"2020-02-06T11:23:52Z"}},{"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":"a9e59e65-5b46-6b2b-e637-4a2f67302fcf","fileSystemId":"aa0e77d0-5a3d-b99f-0625-02a1ae8fe28a","name":"cli-sn-000006","created":"2020-02-06T11:24:33Z"}}]}' 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 + - Thu, 06 Feb 2020 11:25:09 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..c1216130776 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"9a9aeec8-1c4c-424b-a867-be00b257a576\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"600095da-bda4-432f-a4a4-4b1932f92030\"\ + ,\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/b4524823-2737-4b20-908c-b77d81e0edcf?api-version=2019-09-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:50:49 GMT + - Fri, 07 Feb 2020 09:44:28 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2fecf17d-c626-480c-8424-107fc84dc14c + - f0d92e0f-d5e4-4900-856a-48f3d441b170 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' 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/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/b4524823-2737-4b20-908c-b77d81e0edcf?api-version=2019-09-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:50:53 GMT + - Fri, 07 Feb 2020 09:44:32 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bbee543e-3340-4013-8e2a-f3bd1145fc34 + - 4e1e04a8-592d-4e3e-959c-a229e2c36779 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"6fddcbee-eb99-4ef9-ba68-685e05feaf8c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"600095da-bda4-432f-a4a4-4b1932f92030\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:53 GMT + - Fri, 07 Feb 2020 09:44:33 GMT etag: - - W/"9b529a92-0190-4f00-8f57-255afb16d5ba" + - W/"6fddcbee-eb99-4ef9-ba68-685e05feaf8c" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e0563b4-a77e-491d-8660-bff78882a219 + - 2418816f-f963-4975-9f97-22484b97ff64 status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"6fddcbee-eb99-4ef9-ba68-685e05feaf8c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"600095da-bda4-432f-a4a4-4b1932f92030\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:50:54 GMT + - Fri, 07 Feb 2020 09:44:34 GMT etag: - - W/"9b529a92-0190-4f00-8f57-255afb16d5ba" + - W/"6fddcbee-eb99-4ef9-ba68-685e05feaf8c" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d76f2395-21f4-4bf5-9475-364ee7f6472d + - 39dc1788-ffdc-4a4a-9ffe-33c4df5aeb91 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000007"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000007"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"91945f21-d58f-4d6a-938a-a11acc2c059c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"600095da-bda4-432f-a4a4-4b1932f92030\"\ + ,\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/\\\"91945f21-d58f-4d6a-938a-a11acc2c059c\\\"\"\ + ,\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/\\\"91945f21-d58f-4d6a-938a-a11acc2c059c\\\ + \"\",\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/881587c0-0a65-422f-b8bd-4518416d4bee?api-version=2019-09-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:50:54 GMT + - Fri, 07 Feb 2020 09:44:35 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03107770-f7a2-4112-8098-424ab7383f84 + - d3829f06-9989-48a5-b6ac-4239f5140e7f x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -340,13 +347,13 @@ 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 - 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/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/881587c0-0a65-422f-b8bd-4518416d4bee?api-version=2019-09-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:50:59 GMT + - Fri, 07 Feb 2020 09:44:39 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a938441-ceb4-4498-bd36-542a63c26d6d + - a3b31948-a10f-41b5-91ea-3d44e2a3c802 status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"655149af-9f95-4b99-9016-d386ee2c75fe\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"600095da-bda4-432f-a4a4-4b1932f92030\"\ + ,\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/\\\"655149af-9f95-4b99-9016-d386ee2c75fe\\\"\"\ + ,\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/\\\"655149af-9f95-4b99-9016-d386ee2c75fe\\\ + \"\",\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:51:00 GMT + - Fri, 07 Feb 2020 09:44:39 GMT etag: - - W/"0ea3fd87-133c-4b32-9ebf-97ed1b9f2e54" + - W/"655149af-9f95-4b99-9016-d386ee2c75fe" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edc9c6c6-f39f-48c2-90d1-5e3e0a220c50 + - ffa14e69-291c-4720-8535-e0941bc2e6fb 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_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: !!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%3A44%3A46.6655324Z''\"","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/ea6bc4ef-e0ed-4165-9896-c908dee0197e?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:51:08 GMT + - Fri, 07 Feb 2020 09:44:47 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A06.8881176Z'" + - W/"datetime'2020-02-07T09%3A44%3A46.6655324Z'" expires: - '-1' pragma: @@ -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/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/ea6bc4ef-e0ed-4165-9896-c908dee0197e?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea6bc4ef-e0ed-4165-9896-c908dee0197e","name":"ea6bc4ef-e0ed-4165-9896-c908dee0197e","status":"Succeeded","startTime":"2020-02-07T09:44:46.1640585Z","endTime":"2020-02-07T09:44:47.4295182Z","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:51:38 GMT + - Fri, 07 Feb 2020 09:45:19 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_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: !!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%3A44%3A47.3231735Z''\"","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 + - Fri, 07 Feb 2020 09:45:19 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A06.9621696Z'" + - W/"datetime'2020-02-07T09%3A44%3A47.3231735Z'" expires: - '-1' pragma: @@ -622,8 +631,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1"}, "properties": {"size": - 4398046511104, "serviceLevel": "Premium"}}' + body: !!python/unicode '{"properties": {"serviceLevel": "Premium", "size": 4398046511104}, + "location": "westus2stage", "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -634,36 +643,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A45%3A26.4594024Z''\"","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/dece25a3-8555-4869-b849-ae3eb0756526?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 + - Fri, 07 Feb 2020 09:45:27 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A46.2758644Z'" + - W/"datetime'2020-02-07T09%3A45%3A26.4594024Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -697,24 +706,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/dece25a3-8555-4869-b849-ae3eb0756526?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dece25a3-8555-4869-b849-ae3eb0756526","name":"dece25a3-8555-4869-b849-ae3eb0756526","status":"Succeeded","startTime":"2020-02-07T09:45:26.0506673Z","endTime":"2020-02-07T09:45:27.4489929Z","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 + - Fri, 07 Feb 2020 09:45:57 GMT expires: - '-1' pragma: @@ -750,26 +759,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A45%3A27.3332607Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"poolId":"b474528b-daf2-d448-57dc-0861a7e903c4","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 + - Fri, 07 Feb 2020 09:45:58 GMT etag: - - W/"datetime'2020-02-07T16%3A51%3A46.4349764Z'" + - W/"datetime'2020-02-07T09%3A45%3A27.3332607Z'" expires: - '-1' pragma: @@ -792,9 +801,10 @@ 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: !!python/unicode '{"location": "westus2stage", "properties": {"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", + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "tags": {"Tag1": + "Value1"}}' headers: Accept: - application/json @@ -805,37 +815,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T09%3A46%3A08.5705479Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/418654d1-c390-46b0-9c95-0ba29ac4c77f?api-version=2019-10-01 cache-control: - no-cache content-length: - - '935' + - '940' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:52:24 GMT + - Fri, 07 Feb 2020 09:46:10 GMT etag: - - W/"datetime'2020-02-07T16%3A52%3A23.7722805Z'" + - W/"datetime'2020-02-07T09%3A46%3A08.5705479Z'" expires: - '-1' pragma: @@ -849,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' x-powered-by: - ASP.NET status: @@ -870,24 +880,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:46:40 GMT expires: - '-1' pragma: @@ -924,24 +934,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:47:12 GMT expires: - '-1' pragma: @@ -978,24 +988,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:47:42 GMT expires: - '-1' pragma: @@ -1032,24 +1042,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:48:13 GMT expires: - '-1' pragma: @@ -1086,24 +1096,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:48:43 GMT expires: - '-1' pragma: @@ -1140,24 +1150,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/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 + - Fri, 07 Feb 2020 09:49:13 GMT expires: - '-1' pragma: @@ -1194,26 +1204,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/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'" + - Fri, 07 Feb 2020 09:49:45 GMT expires: - '-1' pragma: @@ -1236,9 +1244,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 +1254,28 @@ interactions: - netappfiles volume create Connection: - keep-alive - Content-Length: - - '423' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet - --tags + - --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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_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'" + - Fri, 07 Feb 2020 09:50:15 GMT expires: - '-1' pragma: @@ -1290,15 +1286,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 +1309,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:50:45 GMT expires: - '-1' pragma: @@ -1365,27 +1363,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:51:16 GMT expires: - '-1' pragma: @@ -1419,27 +1417,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:51:47 GMT expires: - '-1' pragma: @@ -1473,27 +1471,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:52:18 GMT expires: - '-1' pragma: @@ -1527,27 +1525,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:52:49 GMT expires: - '-1' pragma: @@ -1581,27 +1579,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:53:19 GMT expires: - '-1' pragma: @@ -1635,27 +1633,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:53:50 GMT expires: - '-1' pragma: @@ -1689,27 +1687,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 09:54:22 GMT expires: - '-1' pragma: @@ -1743,27 +1741,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Creating","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/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 + - Fri, 07 Feb 2020 09:54:52 GMT expires: - '-1' pragma: @@ -1797,29 +1795,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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/418654d1-c390-46b0-9c95-0ba29ac4c77f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/418654d1-c390-46b0-9c95-0ba29ac4c77f","name":"418654d1-c390-46b0-9c95-0ba29ac4c77f","status":"Succeeded","startTime":"2020-02-07T09:46:08.0712226Z","endTime":"2020-02-07T09:54:59.7050268Z","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: - - '1578' + - '653' 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'" + - Fri, 07 Feb 2020 09:55:22 GMT expires: - '-1' pragma: @@ -1849,32 +1845,33 @@ 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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-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: !!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-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-07T09%3A54%3A59.5378091Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","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_e4444381","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":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","fileSystemId":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","startIp":"10.0.0.9","endIp":"10.0.0.9","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.9"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3169' + - '1583' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:16 GMT + - Fri, 07 Feb 2020 09:55:23 GMT + etag: + - W/"datetime'2020-02-07T09%3A54%3A59.5378091Z'" expires: - '-1' pragma: @@ -1897,45 +1894,53 @@ interactions: code: 200 message: OK - request: - body: null + body: !!python/unicode '{"location": "westus2stage", "properties": {"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", + "serviceLevel": "Premium", "creationToken": "cli-vol-000005"}, "tags": {"Tag1": + "Value1"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive Content-Length: - - '0' + - '428' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -a -p -v + - -g -a -p -v -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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 + 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: '' + 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-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-07T09%3A55%3A33.1566532Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?api-version=2019-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2d7554-f91c-466f-a677-1e2bda52c64b?api-version=2019-10-01 cache-control: - no-cache content-length: - - '0' + - '940' + content-type: + - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:20 GMT + - Fri, 07 Feb 2020 09:55:33 GMT + etag: + - W/"datetime'2020-02-07T09%3A55%3A33.1566532Z'" 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: @@ -1946,13 +1951,13 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -1961,30 +1966,142 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume delete + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-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/cd2d7554-f91c-466f-a677-1e2bda52c64b?api-version=2019-10-01 + response: + body: + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd2d7554-f91c-466f-a677-1e2bda52c64b","name":"cd2d7554-f91c-466f-a677-1e2bda52c64b","status":"Succeeded","startTime":"2020-02-07T09:55:32.7576132Z","endTime":"2020-02-07T09:55:50.6149067Z","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: + - Fri, 07 Feb 2020 09:56:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + --tags + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!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-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-07T09%3A55%3A50.4295241Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","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_e4444381","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":"21940a99-c798-df75-08c4-a511acf1eb9f","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","startIp":"10.0.0.9","endIp":"10.0.0.9","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.9"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1583' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Feb 2020 09:56:06 GMT + etag: + - W/"datetime'2020-02-07T09%3A55%3A50.4295241Z'" + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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.8 (Windows-10-10.0.18362-SP0) 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/0cc830d0-3e25-49dc-8a5a-2d0cfb2e3f27?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/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: !!python/unicode '{"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-07T09%3A55%3A50.4295241Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","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_e4444381","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":"21940a99-c798-df75-08c4-a511acf1eb9f","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","startIp":"10.0.0.9","endIp":"10.0.0.9","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.9"}]}},{"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-07T09%3A54%3A59.5378091Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","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_e4444381","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":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","fileSystemId":"0a6d73a1-7f69-be62-7b67-d0ef0e243078","startIp":"10.0.0.9","endIp":"10.0.0.9","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.9"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '3179' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:00:52 GMT + - Fri, 07 Feb 2020 09:56:08 GMT expires: - '-1' pragma: @@ -2006,6 +2123,63 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v + User-Agent: + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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/6e3906b1-7002-42d9-88e6-357b4dcdb98e?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 07 Feb 2020 09:56:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6e3906b1-7002-42d9-88e6-357b4dcdb98e?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: @@ -2020,24 +2194,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/6e3906b1-7002-42d9-88e6-357b4dcdb98e?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6e3906b1-7002-42d9-88e6-357b4dcdb98e","name":"6e3906b1-7002-42d9-88e6-357b4dcdb98e","status":"Succeeded","startTime":"2020-02-07T09:56:11.94872Z","endTime":"2020-02-07T09:56:21.1138734Z","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' + - '651' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:01:22 GMT + - Fri, 07 Feb 2020 09:56:43 GMT expires: - '-1' pragma: @@ -2073,26 +2247,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-07T09%3A55%3A50.4295241Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","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_e4444381","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":"21940a99-c798-df75-08c4-a511acf1eb9f","fileSystemId":"21940a99-c798-df75-08c4-a511acf1eb9f","startIp":"10.0.0.9","endIp":"10.0.0.9","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.9"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1590' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 17:01:26 GMT + - Fri, 07 Feb 2020 09:56:45 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..b36ac0272bc --- /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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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-09-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..f77622de218 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A32%3A07.8779533Z''\"","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/c7235e9e-6b86-42ca-876a-bb9aa8fe9d70?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, 06 Feb 2020 08:32:08 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.727975Z'" + - W/"datetime'2020-02-06T08%3A32%3A07.8779533Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/c7235e9e-6b86-42ca-876a-bb9aa8fe9d70?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c7235e9e-6b86-42ca-876a-bb9aa8fe9d70","name":"c7235e9e-6b86-42ca-876a-bb9aa8fe9d70","status":"Succeeded","startTime":"2020-02-06T08:32:07.428169Z","endTime":"2020-02-06T08:32:08.6627455Z","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' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:09:08 GMT + - Thu, 06 Feb 2020 08:32:39 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T08%3A32%3A08.5576656Z''\"","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, 06 Feb 2020 08:32:40 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.7920206Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.5576656Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T08%3A32%3A08.5576656Z''\"","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, 06 Feb 2020 08:32:42 GMT etag: - - W/"datetime'2019-11-15T15%3A08%3A36.7920206Z'" + - W/"datetime'2020-02-06T08%3A32%3A08.5576656Z'" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"Tag1": "Value1"}}' + body: !!python/unicode '{"tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T08%3A32%3A46.5989435Z''\"","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, 06 Feb 2020 08:32:50 GMT etag: - - W/"datetime'2019-11-15T15%3A09%3A13.052168Z'" + - W/"datetime'2020-02-06T08%3A32%3A46.5989435Z'" 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..11f8e7396aa 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: !!python/unicode '{"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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A16%3A55.9477397Z''\"","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/d2093252-a44b-462a-9605-d221e6625444?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, 06 Feb 2020 09:16:56 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A24.7233476Z'" + - W/"datetime'2020-02-06T09%3A16%3A55.9477397Z'" expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -74,24 +74,24 @@ interactions: ParameterSetName: - -g -a -l 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/d2093252-a44b-462a-9605-d221e6625444?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d2093252-a44b-462a-9605-d221e6625444","name":"d2093252-a44b-462a-9605-d221e6625444","status":"Succeeded","startTime":"2020-02-06T09:16:55.5086323Z","endTime":"2020-02-06T09:16:56.7344941Z","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, 06 Feb 2020 09:17:27 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A16%3A56.632408Z''\"","location":"westus2stage","properties":{"name":"cli-acc-000002","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '453' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 15 Nov 2019 15:12:55 GMT + - Thu, 06 Feb 2020 09:17:28 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A24.7913964Z'" + - W/"datetime'2020-02-06T09%3A16%3A56.632408Z'" expires: - '-1' pragma: @@ -169,8 +169,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 @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A17%3A35.7065758Z''\"","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/93af9c13-eeee-4075-a3f0-020d2a5fc99f?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, 06 Feb 2020 09:17:36 GMT etag: - - W/"datetime'2019-11-15T15%3A12%3A59.9123704Z'" + - W/"datetime'2020-02-06T09%3A17%3A35.7065758Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/93af9c13-eeee-4075-a3f0-020d2a5fc99f?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/93af9c13-eeee-4075-a3f0-020d2a5fc99f","name":"93af9c13-eeee-4075-a3f0-020d2a5fc99f","status":"Succeeded","startTime":"2020-02-06T09:17:35.2759462Z","endTime":"2020-02-06T09:17:36.8873668Z","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:30 GMT + - Thu, 06 Feb 2020 09:18:07 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/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: !!python/unicode '{"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-06T09%3A17%3A36.7976412Z''\"","location":"westus2stage","properties":{"poolId":"fb665f3f-3d02-692b-6e5f-ec11998448d6","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, 06 Feb 2020 09:18:07 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A00.210581Z'" + - W/"datetime'2020-02-06T09%3A17%3A36.7976412Z'" 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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!python/unicode '{"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-06T09%3A17%3A36.7976412Z''\"","location":"westus2stage","properties":{"poolId":"fb665f3f-3d02-692b-6e5f-ec11998448d6","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, 06 Feb 2020 09:18:10 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A00.210581Z'" + - W/"datetime'2020-02-06T09%3A17%3A36.7976412Z'" expires: - '-1' pragma: @@ -396,8 +396,8 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"Tag1": "Value1"}, "properties": {"size": 4398046511104, "serviceLevel": - "Standard"}}' + body: !!python/unicode '{"properties": {"serviceLevel": "Standard", "size": 4398046511104}, + "tags": {"Tag1": "Value1"}}' headers: Accept: - application/json @@ -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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!python/unicode '{"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-06T09%3A18%3A14.2882642Z''\"","location":"westus2stage","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"fb665f3f-3d02-692b-6e5f-ec11998448d6","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, 06 Feb 2020 09:18:18 GMT etag: - - W/"datetime'2019-11-15T15%3A13%3A34.0246181Z'" + - W/"datetime'2020-02-06T09%3A18%3A14.2882642Z'" 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..2bd809455a6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: !!python/unicode '{"location": "westus2", "properties": {"dhcpOptions": + {}, "addressSpace": {"addressPrefixes": ["10.0.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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"ee10c9dc-c8cf-42d8-bc99-1795a8e8f3cb\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"8eb023ec-79b6-462e-9845-77611f2b1e43\"\ + ,\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/0cb85b4d-f0b5-4388-9d06-484944ab287f?api-version=2019-09-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:18:31 GMT + - Fri, 07 Feb 2020 09:58:23 GMT expires: - '-1' pragma: @@ -58,9 +60,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bee81f02-7f10-46d7-9186-311dd36ee23e + - fa36be0c-6b03-446d-9371-f240b4ae7757 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' 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/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/0cb85b4d-f0b5-4388-9d06-484944ab287f?api-version=2019-09-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:18:36 GMT + - Fri, 07 Feb 2020 09:58:27 GMT expires: - '-1' pragma: @@ -110,7 +112,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73fc2736-08da-4b53-86fd-a7f9055eec0d + - c8e3bc85-7105-409a-b02c-954cc277f323 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"0b79cc95-646a-4962-9c90-cd7b3d51a43e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8eb023ec-79b6-462e-9845-77611f2b1e43\"\ + ,\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 +155,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:36 GMT + - Fri, 07 Feb 2020 09:58:28 GMT etag: - - W/"946388cf-9a57-4f1e-b173-d7a4b1b0948b" + - W/"0b79cc95-646a-4962-9c90-cd7b3d51a43e" expires: - '-1' pragma: @@ -170,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 87673263-c384-4a8e-8520-095f4e873a32 + - e49e0e44-87f8-4950-9b63-07d3fd1b12fe status: code: 200 message: OK @@ -188,23 +192,25 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"0b79cc95-646a-4962-9c90-cd7b3d51a43e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8eb023ec-79b6-462e-9845-77611f2b1e43\"\ + ,\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 +219,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:18:37 GMT + - Fri, 07 Feb 2020 09:58:29 GMT etag: - - W/"946388cf-9a57-4f1e-b173-d7a4b1b0948b" + - W/"0b79cc95-646a-4962-9c90-cd7b3d51a43e" expires: - '-1' pragma: @@ -232,18 +238,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - acdf0781-1c06-4e72-9d2c-3cb787d26a7b + - 2a1084a6-3a64-4f68-9f09-0f132464796d status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [{"properties": {"serviceName": - "Microsoft.Netapp/volumes"}, "name": "0"}]}, "name": "cli-subnet-000006"}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}''' + body: !!python/unicode '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", + "location": "westus2", "properties": {"virtualNetworkPeerings": [], "subnets": + [{"properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}, "name": "cli-subnet-000006"}], + "enableDdosProtection": false, "enableVmProtection": false, "dhcpOptions": {"dnsServers": + []}, "addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}, "tags": {}}' headers: Accept: - application/json @@ -260,42 +265,44 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"58f3d828-7d28-421c-adf1-e500ad46dd75\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"8eb023ec-79b6-462e-9845-77611f2b1e43\"\ + ,\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/\\\"58f3d828-7d28-421c-adf1-e500ad46dd75\\\"\"\ + ,\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/\\\"58f3d828-7d28-421c-adf1-e500ad46dd75\\\ + \"\",\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/62851999-85d8-4646-a13f-64661d6912f7?api-version=2019-09-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:18:37 GMT + - Fri, 07 Feb 2020 09:58:30 GMT expires: - '-1' pragma: @@ -320,9 +327,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f64a8bc7-3d60-4f43-98b6-ee66f532b536 + - 90d8bb29-05c2-4b3a-9830-4f9de67a5faf x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -340,13 +347,13 @@ 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 - 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/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/62851999-85d8-4646-a13f-64661d6912f7?api-version=2019-09-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:18:42 GMT + - Fri, 07 Feb 2020 09:58:34 GMT expires: - '-1' pragma: @@ -372,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a8943b2-31b7-4d7a-be5a-a1b84334e078 + - f3bc6194-c0e5-4092-81e7-50e406ce6841 status: code: 200 message: OK @@ -390,37 +397,39 @@ 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 - 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2019-11-01 + 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-09-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: !!python/unicode "{\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/\\\"6df5a7d3-8788-475f-ab41-2e7cbfdee686\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"8eb023ec-79b6-462e-9845-77611f2b1e43\"\ + ,\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/\\\"6df5a7d3-8788-475f-ab41-2e7cbfdee686\\\"\"\ + ,\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/\\\"6df5a7d3-8788-475f-ab41-2e7cbfdee686\\\ + \"\",\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:18:42 GMT + - Fri, 07 Feb 2020 09:58:34 GMT etag: - - W/"c33d16da-e0a8-4a5f-b2ad-ac985fa9bc68" + - W/"6df5a7d3-8788-475f-ab41-2e7cbfdee686" expires: - '-1' pragma: @@ -448,12 +457,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9399a436-e94d-4be8-9b6e-8d7c15db6097 + - 6de67901-4b96-411f-a6f6-34ba81a14ad6 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_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: !!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%3A58%3A40.5107419Z''\"","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/8536e65b-05c2-4f4b-8da2-7601ff40c64b?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 + - Fri, 07 Feb 2020 09:58:40 GMT etag: - - W/"datetime'2020-02-07T16%3A18%3A47.0634258Z'" + - W/"datetime'2020-02-07T09%3A58%3A40.5107419Z'" expires: - '-1' pragma: @@ -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/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/8536e65b-05c2-4f4b-8da2-7601ff40c64b?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8536e65b-05c2-4f4b-8da2-7601ff40c64b","name":"8536e65b-05c2-4f4b-8da2-7601ff40c64b","status":"Succeeded","startTime":"2020-02-07T09:58:40.0916498Z","endTime":"2020-02-07T09:58:41.2817366Z","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:19:17 GMT + - Fri, 07 Feb 2020 09:59:11 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_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: !!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%3A58%3A41.1743903Z''\"","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 + - Fri, 07 Feb 2020 09:59:11 GMT etag: - - W/"datetime'2020-02-07T16%3A18%3A47.1354774Z'" + - W/"datetime'2020-02-07T09%3A58%3A41.1743903Z'" 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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A19.8882073Z''\"","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/7eff08b4-5be1-4204-bf83-6aa623a4501d?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:19:24 GMT + - Fri, 07 Feb 2020 09:59:20 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A23.9293973Z'" + - W/"datetime'2020-02-07T09%3A59%3A19.8882073Z'" expires: - '-1' pragma: @@ -677,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' 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/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/7eff08b4-5be1-4204-bf83-6aa623a4501d?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7eff08b4-5be1-4204-bf83-6aa623a4501d","name":"7eff08b4-5be1-4204-bf83-6aa623a4501d","status":"Succeeded","startTime":"2020-02-07T09:59:19.2428976Z","endTime":"2020-02-07T09:59:21.8424904Z","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:19:56 GMT + - Fri, 07 Feb 2020 09:59:52 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_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: !!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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-02-07T09%3A59%3A21.6959722Z''\"","location":"westus2stage","properties":{"poolId":"20067940-7d24-decc-befc-720ad6d45e55","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 + - Fri, 07 Feb 2020 09:59:52 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A24.1955851Z'" + - W/"datetime'2020-02-07T09%3A59%3A21.6959722Z'" 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_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}''' + 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-000005/subnets/cli-subnet-000006", + "serviceLevel": "Premium", "creationToken": "cli-vol-000004"}, "location": "westus2stage"}' headers: Accept: - application/json @@ -804,37 +814,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A00%3A01.8582022Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/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/012cd56c-423f-4fda-848e-59d76caa6593?api-version=2019-10-01 cache-control: - no-cache content-length: - - '910' + - '915' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:20:00 GMT + - Fri, 07 Feb 2020 10:00:02 GMT etag: - - W/"datetime'2020-02-07T16%3A19%3A59.9617825Z'" + - W/"datetime'2020-02-07T10%3A00%3A01.8582022Z'" expires: - '-1' pragma: @@ -848,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -869,672 +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/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 + - python/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:40 GMT + - Fri, 07 Feb 2020 10:00:33 GMT expires: - '-1' pragma: @@ -1571,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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:12 GMT + - Fri, 07 Feb 2020 10:01:04 GMT expires: - '-1' pragma: @@ -1625,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:01:34 GMT expires: - '-1' pragma: @@ -1679,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:05 GMT expires: - '-1' pragma: @@ -1733,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:02:35 GMT expires: - '-1' pragma: @@ -1787,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:06 GMT expires: - '-1' pragma: @@ -1841,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:03:37 GMT expires: - '-1' pragma: @@ -1895,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:08 GMT expires: - '-1' pragma: @@ -1949,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Creating","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-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 + - Fri, 07 Feb 2020 10:04:38 GMT expires: - '-1' pragma: @@ -2003,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/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/012cd56c-423f-4fda-848e-59d76caa6593?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: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/012cd56c-423f-4fda-848e-59d76caa6593","name":"012cd56c-423f-4fda-848e-59d76caa6593","status":"Succeeded","startTime":"2020-02-07T10:00:01.4459802Z","endTime":"2020-02-07T10:05:07.875246Z","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:31:17 GMT + - Fri, 07 Feb 2020 10:05:09 GMT expires: - '-1' pragma: @@ -2057,26 +1419,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/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: !!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-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-07T10%3A05%3A07.6978301Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","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_19185c8d","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":"611c32ee-cff4-8aab-9e38-f8760a6455ad","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","startIp":"10.0.0.11","endIp":"10.0.0.11","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.11"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1561' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:18 GMT + - Fri, 07 Feb 2020 10:05:10 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A04.7131728Z'" + - W/"datetime'2020-02-07T10%3A05%3A07.6978301Z'" expires: - '-1' pragma: @@ -2112,28 +1474,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 msrest_azure/0.6.2 + azure-mgmt-netapp/0.8.0 Azure-SDK-For-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: !!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-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-07T10%3A05%3A07.6978301Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","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_19185c8d","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":"611c32ee-cff4-8aab-9e38-f8760a6455ad","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","startIp":"10.0.0.11","endIp":"10.0.0.11","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.11"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1553' + - '1561' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:21 GMT + - Fri, 07 Feb 2020 10:05:13 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A04.7131728Z'" + - W/"datetime'2020-02-07T10%3A05%3A07.6978301Z'" expires: - '-1' pragma: @@ -2156,8 +1518,8 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"Tag1": "Value2"}, "properties": {"serviceLevel": "Premium", - "usageThreshold": 214748364800}}' + body: !!python/unicode '{"properties": {"usageThreshold": 214748364800, "serviceLevel": + "Premium"}, "tags": {"Tag1": "Value2"}}' headers: Accept: - application/json @@ -2174,28 +1536,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/2.7.10 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.11 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: !!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-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-07T10%3A05%3A18.1510397Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","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_19185c8d","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":"611c32ee-cff4-8aab-9e38-f8760a6455ad","fileSystemId":"611c32ee-cff4-8aab-9e38-f8760a6455ad","startIp":"10.0.0.11","endIp":"10.0.0.11","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.11"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1578' + - '1586' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Feb 2020 16:31:29 GMT + - Fri, 07 Feb 2020 10:05:23 GMT etag: - - W/"datetime'2020-02-07T16%3A31%3A24.5051212Z'" + - W/"datetime'2020-02-07T10%3A05%3A18.1510397Z'" 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..f39e210d774 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 pause -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 pause -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 eb2d47a3a7a..776f2385858 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==9.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 eb2d47a3a7a..776f2385858 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==9.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 d0887e7c065..fc7fae786d3 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==9.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 a37f625b5a5..7ba1cf73682 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -101,7 +101,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~=9.0.0', 'azure-mgmt-policyinsights~=0.4.0', 'azure-mgmt-privatedns~=0.1.0',