diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/_client_factory.py b/src/azure-cli/azure/cli/command_modules/netappfiles/_client_factory.py index aeab1b77244..23fdf7fca4b 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_client_factory.py @@ -8,8 +8,8 @@ def cf_netappfiles(cli_ctx, *kwargs): from azure.cli.core.commands.client_factory import get_mgmt_service_client - from azure.mgmt.netapp import AzureNetAppFilesManagementClient - return get_mgmt_service_client(cli_ctx, AzureNetAppFilesManagementClient) + from azure.mgmt.netapp import NetAppManagementClient + return get_mgmt_service_client(cli_ctx, NetAppManagementClient) def accounts_mgmt_client_factory(cli_ctx, _): diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/_exception_handler.py b/src/azure-cli/azure/cli/command_modules/netappfiles/_exception_handler.py index f574ac045ef..7d8ac8d0cd6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_exception_handler.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_exception_handler.py @@ -3,13 +3,15 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long + from knack.util import CLIError from msrest.exceptions import ValidationError # pylint: disable=import-error -from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import HttpResponseError def netappfiles_exception_handler(ex): - if isinstance(ex, (CloudError, ValidationError, ValueError)): + if isinstance(ex, (HttpResponseError, ValidationError, ValueError)): message = ex raise CLIError(message) 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 625e8d7cb86..c77050b8e84 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -56,6 +56,8 @@ short-summary: Domain Users in the Active directory to be given SeSecurityPrivilege privilege (Needed for SMB Continuously available shares for SQL). A list of unique usernames without domain specifier - name: --ldap-over-tls short-summary: Specifies whether or not the LDAP traffic needs to be secured via TLS + - name: --allow-local-ldap-users + short-summary: If enabled, NFS client local users can also (in addition to LDAP users) access the NFS volumes examples: - name: Add an active directory to the account text: > @@ -548,6 +550,8 @@ short-summary: Read only access - name: --unix-read-write short-summary: Read and write access + - name: --ldap-enabled + short-summary: Specifies whether LDAP is enabled or not for a given NFS volume examples: - name: Create an ANF volume text: > 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 3a76731c052..a00bca32bb7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py @@ -34,6 +34,7 @@ def load_arguments(self, _): with self.argument_context('netappfiles account ad') as c: c.argument('backup_operators', arg_type=tags_type) c.argument('security_operators', arg_type=tags_type) + c.argument('allow_local_ldap_users', arg_type=tags_type) with self.argument_context('netappfiles account ad list') as c: c.argument('account_name', help='The name of the ANF account', id_part=None) @@ -58,14 +59,6 @@ def load_arguments(self, _): load_snapshotArguments(self, account_name_type, pool_name_type, volume_name_type) load_vaultArguments(self, account_name_type) - with self.argument_context('netappfiles account backup') as c: - c.argument('account_name', account_name_type, id_part=None) - - load_poolArguments(self, account_name_type, pool_name_type) - load_volumeArguments(self, account_name_type, pool_name_type, volume_name_type) - load_snapshotArguments(self, account_name_type, pool_name_type, volume_name_type) - load_vaultArguments(self, account_name_type) - def load_poolArguments(self, account_name_type, pool_name_type): with self.argument_context('netappfiles pool') as c: @@ -89,6 +82,7 @@ def load_volumeArguments(self, account_name_type, pool_name_type, volume_name_ty c.argument('unix_read_only', arg_type=get_three_state_flag()) c.argument('unix_read_write', arg_type=get_three_state_flag()) c.argument('cifs', arg_type=get_three_state_flag()) + c.argument('ldap_enabled', arg_type=get_three_state_flag()) with self.argument_context('netappfiles volume list') as c: c.argument('account_name', account_name_type, id_part=None) 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 c77e8868b48..2f6bd11d430 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py @@ -91,13 +91,13 @@ def load_accounts_command_groups(self, netappfiles_accounts_sdk): with self.command_group('netappfiles account', netappfiles_accounts_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') + g.command('delete', 'begin_delete') g.custom_command('create', 'create_account', client_factory=accounts_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#NetAppAccount', exception_handler=netappfiles_exception_handler) g.generic_update_command('update', - setter_name='update', + setter_name='begin_update', custom_func_name='patch_account', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#NetAppAccountPatch', @@ -105,7 +105,7 @@ def load_accounts_command_groups(self, netappfiles_accounts_sdk): with self.command_group('netappfiles account ad', netappfiles_accounts_sdk) as g: g.generic_update_command('add', - setter_name='update', + setter_name='begin_update', custom_func_name='add_active_directory', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#NetAppAccountPatch', @@ -114,7 +114,6 @@ def load_accounts_command_groups(self, netappfiles_accounts_sdk): client_factory=accounts_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#NetAppAccount', exception_handler=netappfiles_exception_handler) - g.custom_command('remove', 'remove_active_directory', client_factory=accounts_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#NetAppAccount', @@ -122,17 +121,17 @@ def load_accounts_command_groups(self, netappfiles_accounts_sdk): def load_account_backup_command_groups(self, netappfiles_account_backups_sdk): - with self.command_group('netappfiles account backup', netappfiles_account_backups_sdk) as g: + with self.command_group('netappfiles account backup', netappfiles_account_backups_sdk, is_preview=True) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete', confirmation=True) + g.command('delete', 'begin_delete', confirmation=True) def load_backup_policies_command_groups(self, netappfiles_backup_policies_sdk): with self.command_group('netappfiles account backup-policy', netappfiles_backup_policies_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') + g.command('delete', 'begin_delete') g.custom_command('update', 'patch_backup_policy', client_factory=backup_policies_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#BackupPolicyPatch', @@ -147,13 +146,13 @@ def load_pools_command_groups(self, netappfiles_pools_sdk): with self.command_group('netappfiles pool', netappfiles_pools_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') + g.command('delete', 'begin_delete') g.custom_command('create', 'create_pool', client_factory=pools_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#CapacityPool', exception_handler=netappfiles_exception_handler) g.generic_update_command('update', - setter_name='update', + setter_name='begin_update', custom_func_name='patch_pool', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#CapacityPoolPatch', @@ -164,26 +163,29 @@ def load_volumes_command_groups(self, netappfiles_volumes_sdk): with self.command_group('netappfiles volume', netappfiles_volumes_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') + g.command('delete', 'begin_delete') g.custom_command('create', 'create_volume', client_factory=volumes_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#Volume', exception_handler=netappfiles_exception_handler) g.generic_update_command('update', - setter_name='update', + setter_name='begin_update', custom_func_name='patch_volume', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#VolumePatch', exception_handler=netappfiles_exception_handler) - g.custom_command('revert', 'revert_snapshot', + g.custom_command('revert', 'volume_revert', + client_factory=volumes_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#Volume', + exception_handler=netappfiles_exception_handler) + g.custom_command('pool-change', 'pool_change', client_factory=volumes_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#Volume', exception_handler=netappfiles_exception_handler) - g.command('pool-change', 'pool_change') with self.command_group('netappfiles volume export-policy', netappfiles_volumes_sdk) as g: g.generic_update_command('add', - setter_name='update', + setter_name='begin_update', custom_func_name='add_export_policy_rule', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#VolumePatch', @@ -193,7 +195,7 @@ def load_volumes_command_groups(self, netappfiles_volumes_sdk): doc_string_source='azure.mgmt.netapp.models#Volume', exception_handler=netappfiles_exception_handler) g.generic_update_command('remove', - setter_name='update', + setter_name='begin_update', custom_func_name='remove_export_policy_rule', setter_arg_name='body', doc_string_source='azure.mgmt.netapp.models#VolumePatch', @@ -204,42 +206,49 @@ def load_volumes_command_groups(self, netappfiles_volumes_sdk): client_factory=volumes_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#Volume', exception_handler=netappfiles_exception_handler) - g.command('suspend', 'break_replication') - g.command('resume', 'resync_replication') - g.command('remove', 'delete_replication') - g.command('status', 'replication_status_method') - g.command('re-initialize', 're_initialize_replication') + g.custom_command('suspend', 'break_replication', + client_factory=volumes_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#Volume', + exception_handler=netappfiles_exception_handler) + g.command('resume', 'begin_resync_replication') + g.command('remove', 'begin_delete_replication') + g.command('status', 'replication_status') + g.command('re-initialize', 'begin_re_initialize_replication') def load_backups_command_groups(self, netappfiles_backups_sdk): - with self.command_group('netappfiles volume backup', netappfiles_backups_sdk) as g: + with self.command_group('netappfiles volume backup', netappfiles_backups_sdk, is_preview=True) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') - g.command('update', 'update') - g.command('create', 'create') + g.command('delete', 'begin_delete') + g.custom_command('update', 'update_backup', + client_factory=backups_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#BackupPatch', + exception_handler=netappfiles_exception_handler) + g.custom_command('create', 'create_backup', + client_factory=backups_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#Backup', + exception_handler=netappfiles_exception_handler) def load_snapshots_command_groups(self, netappfiles_snapshots_sdk): with self.command_group('netappfiles snapshot', netappfiles_snapshots_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.command('delete', 'delete') + g.command('delete', 'begin_delete') g.custom_command('create', 'create_snapshot', client_factory=snapshots_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#Snapshot', exception_handler=netappfiles_exception_handler) + g.command('update', 'begin_update') def load_snapshots_policies_command_groups(self, netappfiles_snapshot_policies_sdk): with self.command_group('netappfiles snapshot policy', netappfiles_snapshot_policies_sdk) as g: g.show_command('show', 'get') g.command('list', 'list') - g.custom_command('volumes', 'list_volumes', - client_factory=snapshot_policies_mgmt_client_factory, - doc_string_source='azure.mgmt.netapp.models#SnapshotPolicy', - exception_handler=netappfiles_exception_handler) - g.command('delete', 'delete') + g.command('volumes', 'list_volumes') + g.command('delete', 'begin_delete') g.custom_command('update', 'patch_snapshot_policy', client_factory=snapshot_policies_mgmt_client_factory, doc_string_source='azure.mgmt.netapp.models#SnapshotPolicyPatch', 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 8ed1d0e55aa..be69e2d884a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -7,7 +7,7 @@ from knack.log import get_logger from knack.util import CLIError -from azure.mgmt.netapp.models import ActiveDirectory, NetAppAccount, NetAppAccountPatch, CapacityPool, CapacityPoolPatch, Volume, VolumePatch, VolumePropertiesExportPolicy, ExportPolicyRule, Snapshot, ReplicationObject, VolumePropertiesDataProtection, SnapshotPolicy, SnapshotPolicyPatch, HourlySchedule, DailySchedule, WeeklySchedule, MonthlySchedule, VolumeSnapshotProperties, VolumeBackupProperties, BackupPolicy, BackupPolicyPatch, VolumePatchPropertiesDataProtection, AccountEncryption +from azure.mgmt.netapp.models import ActiveDirectory, NetAppAccount, NetAppAccountPatch, CapacityPool, CapacityPoolPatch, Volume, VolumePatch, VolumePropertiesExportPolicy, ExportPolicyRule, Snapshot, ReplicationObject, VolumePropertiesDataProtection, SnapshotPolicy, SnapshotPolicyPatch, HourlySchedule, DailySchedule, WeeklySchedule, MonthlySchedule, VolumeSnapshotProperties, VolumeBackupProperties, BackupPolicy, BackupPolicyPatch, VolumePatchPropertiesDataProtection, AccountEncryption, AuthorizeRequest, BreakReplicationRequest, PoolChangeRequest, VolumeRevert, Backup, BackupPatch from azure.cli.core.commands.client_factory import get_subscription_id from msrestazure.tools import is_valid_resource_id, parse_resource_id @@ -25,30 +25,30 @@ def _update_mapper(existing, new, keys): setattr(new, key, new_value if new_value is not None else existing_value) -# -- account -- - +# ---- 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, encryption=None): +def create_account(client, account_name, resource_group_name, location, tags=None, encryption=None): account_encryption = AccountEncryption(key_source=encryption) body = NetAppAccount(location=location, tags=tags, encryption=account_encryption) - return client.create_or_update(body, resource_group_name, account_name) + return client.begin_create_or_update(resource_group_name, account_name, body) # pylint: disable=unused-argument # add an active directory to the netapp account # current limitation is 1 AD/subscription -def add_active_directory(cmd, instance, account_name, resource_group_name, username, password, domain, dns, +def add_active_directory(instance, account_name, resource_group_name, username, password, domain, dns, smb_server_name, organizational_unit=None, kdc_ip=None, ad_name=None, server_root_ca_cert=None, backup_operators=None, aes_encryption=None, ldap_signing=None, - security_operators=None, ldap_over_tls=None, tags=None): + security_operators=None, ldap_over_tls=None, allow_local_ldap_users=None, tags=None): active_directories = [] active_directory = ActiveDirectory(username=username, password=password, domain=domain, dns=dns, smb_server_name=smb_server_name, organizational_unit=organizational_unit, kdc_ip=kdc_ip, ad_name=ad_name, backup_operators=backup_operators, server_root_ca_certificate=server_root_ca_cert, aes_encryption=aes_encryption, ldap_signing=ldap_signing, security_operators=security_operators, - ldap_over_tls=ldap_over_tls) + ldap_over_tls=ldap_over_tls, + allow_local_nfs_users_with_ldap=allow_local_ldap_users) active_directories.append(active_directory) body = NetAppAccountPatch(active_directories=active_directories) _update_mapper(instance, body, ['active_directories']) @@ -56,7 +56,7 @@ def add_active_directory(cmd, instance, account_name, resource_group_name, usern # list all active directories -def list_active_directories(cmd, client, account_name, resource_group_name): +def list_active_directories(client, account_name, resource_group_name): return client.get(resource_group_name, account_name).active_directories @@ -66,7 +66,7 @@ def list_active_directories(cmd, client, account_name, resource_group_name): # absence of an AD does not remove the ADs already present. To perform this a put request is required that # asserts exactly the content provided, replacing whatever is already present including removing it if none # are present -def remove_active_directory(cmd, client, account_name, resource_group_name, active_directory): +def remove_active_directory(client, account_name, resource_group_name, active_directory): instance = client.get(resource_group_name, account_name) for ad in instance.active_directories: @@ -76,26 +76,24 @@ def remove_active_directory(cmd, client, account_name, resource_group_name, acti active_directories = instance.active_directories body = NetAppAccount(location=instance.location, tags=instance.tags, active_directories=active_directories) - return client.create_or_update(body, resource_group_name, account_name) + return client.begin_create_or_update(resource_group_name, account_name, body) # account update, active_directory is amended with subgroup commands -def patch_account(cmd, instance, account_name, resource_group_name, tags=None, encryption=None): +def patch_account(instance, account_name, resource_group_name, tags=None, encryption=None): account_encryption = AccountEncryption(key_source=encryption) body = NetAppAccountPatch(tags=tags, encryption=account_encryption) _update_mapper(instance, body, ['tags']) return body -# -- pool -- - -def create_pool(cmd, client, account_name, pool_name, resource_group_name, service_level, location, size, tags=None, qos_type=None): +# ---- POOL ---- +def create_pool(client, account_name, pool_name, resource_group_name, service_level, location, size, tags=None, qos_type=None): body = CapacityPool(service_level=service_level, size=int(size) * tib_scale, location=location, tags=tags, qos_type=qos_type) - return client.create_or_update(body, resource_group_name, account_name, pool_name) + return client.begin_create_or_update(resource_group_name, account_name, pool_name, body) -# pool update -def patch_pool(cmd, instance, size=None, qos_type=None, tags=None): +def patch_pool(instance, size=None, qos_type=None, tags=None): # put operation to update the record if size is not None: size = int(size) * tib_scale @@ -104,7 +102,7 @@ def patch_pool(cmd, instance, size=None, qos_type=None, tags=None): return body -# -- volume -- +# ---- 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, @@ -116,7 +114,7 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr has_root_access=None, snapshot_dir_visible=None, smb_encryption=None, smb_continuously_avl=None, encryption_key_source=None, rule_index=None, unix_read_only=None, unix_read_write=None, cifs=None, - allowed_clients=None): + allowed_clients=None, ldap_enabled=None): subs_id = get_subscription_id(cmd.cli_ctx) # default the resource group of the subnet to the volume's rg unless the subnet is specified by id @@ -199,23 +197,18 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr snapshot_id=snapshot_id, smb_encryption=smb_encryption, smb_continuously_available=smb_continuously_avl, - encryption_key_source=encryption_key_source) - - return client.create_or_update(body, resource_group_name, account_name, pool_name, volume_name) + encryption_key_source=encryption_key_source, + ldap_enabled=ldap_enabled) + return client.begin_create_or_update(resource_group_name, account_name, pool_name, volume_name, body) -# volume revert -def revert_snapshot(cmd, client, account_name, pool_name, volume_name, resource_group_name, snapshot_id): - return client.revert(resource_group_name, account_name, pool_name, volume_name, snapshot_id) - -# volume update -def patch_volume(cmd, instance, usage_threshold=None, service_level=None, protocol_types=None, tags=None, vault_id=None, +# -- volume update +def patch_volume(instance, usage_threshold=None, service_level=None, tags=None, vault_id=None, backup_enabled=False, backup_policy_id=None, policy_enforced=False, throughput_mibps=None): params = VolumePatch( usage_threshold=None if usage_threshold is None else int(usage_threshold) * gib_scale, service_level=service_level, - protocol_types=protocol_types, data_protection=None if vault_id is None else VolumePatchPropertiesDataProtection( backup=VolumeBackupProperties(vault_id=vault_id, backup_enabled=backup_enabled, backup_policy_id=backup_policy_id, policy_enforced=policy_enforced)), @@ -226,9 +219,32 @@ def patch_volume(cmd, instance, usage_threshold=None, service_level=None, protoc return params -# -- volume export policy -- +# -- volume revert +def volume_revert(client, resource_group_name, account_name, pool_name, volume_name, snapshot_id): + body = VolumeRevert(snapshot_id=snapshot_id) + return client.begin_revert(resource_group_name, account_name, pool_name, volume_name, body) + + +# -- change pool +def pool_change(client, resource_group_name, account_name, pool_name, volume_name, new_pool_resource_id): + body = PoolChangeRequest(new_pool_resource_id=new_pool_resource_id) + return client.begin_pool_change(resource_group_name, account_name, pool_name, volume_name, body) + + +# -- volume replication +def authorize_replication(client, resource_group_name, account_name, pool_name, volume_name, remote_volume_resource_id=None): + body = AuthorizeRequest(remote_volume_resource_id=remote_volume_resource_id) + return client.begin_authorize_replication(resource_group_name, account_name, pool_name, volume_name, body) + + +def break_replication(client, resource_group_name, account_name, pool_name, volume_name, force_break_replication=None): + body = BreakReplicationRequest(force_break_replication=force_break_replication) + return client.begin_break_replication(resource_group_name, account_name, pool_name, volume_name, body) + + +# ---- 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): +def add_export_policy_rule(instance, allowed_clients, rule_index, unix_read_only, unix_read_write, cifs, nfsv3, nfsv41): rules = [] export_policy = ExportPolicyRule(rule_index=rule_index, unix_read_only=unix_read_only, unix_read_write=unix_read_write, cifs=cifs, nfsv3=nfsv3, nfsv41=nfsv41, allowed_clients=allowed_clients) @@ -248,12 +264,12 @@ def add_export_policy_rule(cmd, instance, allowed_clients, rule_index, unix_read # list all rules -def list_export_policy_rules(cmd, client, account_name, pool_name, volume_name, resource_group_name): +def list_export_policy_rules(client, account_name, pool_name, volume_name, resource_group_name): return client.get(resource_group_name, account_name, pool_name, volume_name).export_policy # delete rule by specific index -def remove_export_policy_rule(cmd, instance, rule_index): +def remove_export_policy_rule(instance, rule_index): rules = [] # Note this commented out way created a patch request that included some mount target properties causing validation issues server side # need to investigate why, leave this for now remove after this has been ivestigated before next release please @@ -277,28 +293,18 @@ def remove_export_policy_rule(cmd, instance, rule_index): return params -# -- 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): +# ---- SNAPSHOTS ---- +def create_snapshot(client, resource_group_name, account_name, pool_name, volume_name, snapshot_name, location): body = Snapshot(location=location) - return client.create(resource_group_name, account_name, pool_name, volume_name, snapshot_name, body.location) - - -# -- snapshot policies -- + return client.begin_create(resource_group_name, account_name, pool_name, volume_name, snapshot_name, body) +# ---- SNAPSHOT POLICIES ---- def create_snapshot_policy(client, resource_group_name, account_name, snapshot_policy_name, location, - hourly_snapshots=0, hourly_minute=0, - daily_snapshots=0, daily_minute=0, daily_hour=0, - weekly_snapshots=0, weekly_minute=0, weekly_hour=0, weekly_day=None, - monthly_snapshots=0, monthly_minute=0, monthly_hour=0, monthly_days=None, + hourly_snapshots=None, hourly_minute=None, + daily_snapshots=None, daily_minute=None, daily_hour=None, + weekly_snapshots=None, weekly_minute=None, weekly_hour=None, weekly_day=None, + monthly_snapshots=None, monthly_minute=None, monthly_hour=None, monthly_days=None, enabled=False, tags=None): body = SnapshotPolicy( location=location, @@ -310,14 +316,14 @@ def create_snapshot_policy(client, resource_group_name, account_name, snapshot_p hour=monthly_hour, days_of_month=monthly_days), enabled=enabled, tags=tags) - return client.create(body, resource_group_name, account_name, snapshot_policy_name) + return client.create(resource_group_name, account_name, snapshot_policy_name, body) def patch_snapshot_policy(client, resource_group_name, account_name, snapshot_policy_name, location, - hourly_snapshots=0, hourly_minute=0, - daily_snapshots=0, daily_minute=0, daily_hour=0, - weekly_snapshots=0, weekly_minute=0, weekly_hour=0, weekly_day=None, - monthly_snapshots=0, monthly_minute=0, monthly_hour=0, monthly_days=None, + hourly_snapshots=None, hourly_minute=None, + daily_snapshots=None, daily_minute=None, daily_hour=None, + weekly_snapshots=None, weekly_minute=None, weekly_hour=None, weekly_day=None, + monthly_snapshots=None, monthly_minute=None, monthly_hour=None, monthly_days=None, enabled=False): body = SnapshotPolicyPatch( location=location, @@ -328,19 +334,24 @@ def patch_snapshot_policy(client, resource_group_name, account_name, snapshot_po monthly_schedule=MonthlySchedule(snapshots_to_keep=monthly_snapshots, minute=monthly_minute, hour=monthly_hour, days_of_month=monthly_days), enabled=enabled) - return client.update(body, resource_group_name, account_name, snapshot_policy_name) + return client.begin_update(resource_group_name, account_name, snapshot_policy_name, body) -def list_volumes(client, account_name, resource_group_name, snapshot_policy_name): - return client.list_volumes(resource_group_name, account_name, snapshot_policy_name) +# ---- VOLUME BACKUPS ---- +def create_backup(client, resource_group_name, account_name, pool_name, volume_name, backup_name, location): + body = Backup(location=location) + return client.begin_create(resource_group_name, account_name, pool_name, volume_name, backup_name, body) -# -- backup policies -- +def update_backup(client, resource_group_name, account_name, pool_name, volume_name, backup_name, tags=None): + body = BackupPatch(tags=tags) + return client.begin_update(resource_group_name, account_name, pool_name, volume_name, backup_name, body) +# ---- BACKUP POLICIES ---- def create_backup_policy(client, resource_group_name, account_name, backup_policy_name, location, - daily_backups=0, weekly_backups=0, monthly_backups=0, - yearly_backups=0, enabled=False, tags=None): + daily_backups=None, weekly_backups=None, monthly_backups=None, + yearly_backups=None, enabled=False, tags=None): body = BackupPolicy( location=location, daily_backups_to_keep=daily_backups, @@ -349,7 +360,7 @@ def create_backup_policy(client, resource_group_name, account_name, backup_polic yearly_backups_to_keep=yearly_backups, enabled=enabled, tags=tags) - return client.create(resource_group_name, account_name, backup_policy_name, body) + return client.begin_create(resource_group_name, account_name, backup_policy_name, body) def patch_backup_policy(client, resource_group_name, account_name, backup_policy_name, location=None, diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_account_encryption.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_account_encryption.yaml index e1db5372dd2..89eecb8c6f3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_account_encryption.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_account_encryption.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A37%3A43.6891489Z''\"","location":"westus2","properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A11%3A14.9275018Z''\"","location":"westus2","properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"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/15fcb5e8-d4c5-4678-a6a5-9cb10925e982?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be1170dc-9591-4d86-bcfd-765945191d3a?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:37:44 GMT + - Tue, 09 Mar 2021 11:11:15 GMT etag: - - W/"datetime'2021-03-01T15%3A37%3A43.6891489Z'" + - W/"datetime'2021-03-09T11%3A11%3A14.9275018Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,24 +71,23 @@ interactions: ParameterSetName: - -g -a -l --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15fcb5e8-d4c5-4678-a6a5-9cb10925e982?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be1170dc-9591-4d86-bcfd-765945191d3a?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15fcb5e8-d4c5-4678-a6a5-9cb10925e982","name":"15fcb5e8-d4c5-4678-a6a5-9cb10925e982","status":"Succeeded","startTime":"2021-03-01T15:37:43.6306194Z","endTime":"2021-03-01T15:37:43.7712313Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be1170dc-9591-4d86-bcfd-765945191d3a","name":"be1170dc-9591-4d86-bcfd-765945191d3a","status":"Succeeded","startTime":"2021-03-09T11:11:14.842506Z","endTime":"2021-03-09T11:11:15.0375286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '576' + - '575' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:38:16 GMT + - Tue, 09 Mar 2021 11:11:45 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A37%3A43.7611996Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-09T11%3A11%3A15.0285723Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:38:17 GMT + - Tue, 09 Mar 2021 11:11:45 GMT etag: - - W/"datetime'2021-03-01T15%3A37%3A43.7611996Z'" + - W/"datetime'2021-03-09T11%3A11%3A15.0285723Z'" expires: - '-1' pragma: @@ -182,24 +177,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A38%3A26.2489193Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A11%3A52.7989147Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/64e81f4a-8832-4734-acd4-936cd5a5563e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86309cf5-6bbb-4198-b6e6-3ceb88b12fee?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -207,9 +199,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:38:27 GMT + - Tue, 09 Mar 2021 11:11:53 GMT etag: - - W/"datetime'2021-03-01T15%3A38%3A26.2489193Z'" + - W/"datetime'2021-03-09T11%3A11%3A52.7989147Z'" expires: - '-1' pragma: @@ -223,7 +215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -233,7 +225,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -243,24 +235,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64e81f4a-8832-4734-acd4-936cd5a5563e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86309cf5-6bbb-4198-b6e6-3ceb88b12fee?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64e81f4a-8832-4734-acd4-936cd5a5563e","name":"64e81f4a-8832-4734-acd4-936cd5a5563e","status":"Succeeded","startTime":"2021-03-01T15:38:26.186353Z","endTime":"2021-03-01T15:38:26.3286699Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86309cf5-6bbb-4198-b6e6-3ceb88b12fee","name":"86309cf5-6bbb-4198-b6e6-3ceb88b12fee","status":"Succeeded","startTime":"2021-03-09T11:11:52.7193749Z","endTime":"2021-03-09T11:11:52.8793237Z","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' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:38:58 GMT + - Tue, 09 Mar 2021 11:12:24 GMT expires: - '-1' pragma: @@ -286,7 +277,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -296,13 +287,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A38%3A26.3209695Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A11%3A52.8699642Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -313,9 +303,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:38:59 GMT + - Tue, 09 Mar 2021 11:12:24 GMT etag: - - W/"datetime'2021-03-01T15%3A38%3A26.3209695Z'" + - W/"datetime'2021-03-09T11%3A11%3A52.8699642Z'" expires: - '-1' pragma: @@ -351,15 +341,12 @@ interactions: ParameterSetName: - --resource-group -a --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A38%3A26.3209695Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A11%3A52.8699642Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -370,9 +357,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:39:01 GMT + - Tue, 09 Mar 2021 11:12:26 GMT etag: - - W/"datetime'2021-03-01T15%3A38%3A26.3209695Z'" + - W/"datetime'2021-03-09T11%3A11%3A52.8699642Z'" expires: - '-1' pragma: @@ -408,24 +395,21 @@ interactions: Content-Length: - '65' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -a --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003?api-version=2020-11-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=2020-12-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''2021-03-01T15%3A39%3A04.4226994Z''\"","location":"westus2","properties":{"provisioningState":"Patching","encryption":{}}}' + 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''2021-03-09T11%3A12%3A29.6257939Z''\"","location":"westus2","properties":{"provisioningState":"Patching","encryption":{}}}' 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/5c2fc604-ee86-43a2-abb6-e6c32887f1f0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955bc9c7-9079-40de-b06b-1ff3c701a83d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -433,13 +417,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:39:04 GMT + - Tue, 09 Mar 2021 11:12:29 GMT etag: - - W/"datetime'2021-03-01T15%3A39%3A04.4226994Z'" + - W/"datetime'2021-03-09T11%3A12%3A29.6257939Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c2fc604-ee86-43a2-abb6-e6c32887f1f0?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955bc9c7-9079-40de-b06b-1ff3c701a83d?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -451,7 +435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -461,7 +445,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -471,13 +455,12 @@ interactions: ParameterSetName: - --resource-group -a --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c2fc604-ee86-43a2-abb6-e6c32887f1f0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955bc9c7-9079-40de-b06b-1ff3c701a83d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c2fc604-ee86-43a2-abb6-e6c32887f1f0","name":"5c2fc604-ee86-43a2-abb6-e6c32887f1f0","status":"Succeeded","startTime":"2021-03-01T15:39:04.3523849Z","endTime":"2021-03-01T15:39:04.6173962Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955bc9c7-9079-40de-b06b-1ff3c701a83d","name":"955bc9c7-9079-40de-b06b-1ff3c701a83d","status":"Succeeded","startTime":"2021-03-09T11:12:29.5616148Z","endTime":"2021-03-09T11:12:29.8961897Z","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 @@ -488,7 +471,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:39:35 GMT + - Tue, 09 Mar 2021 11:12:59 GMT expires: - '-1' pragma: @@ -514,7 +497,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -524,13 +507,12 @@ interactions: ParameterSetName: - --resource-group -a --encryption User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A39%3A04.6098312Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-09T11%3A12%3A29.8909805Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context @@ -541,9 +523,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:39:36 GMT + - Tue, 09 Mar 2021 11:12:59 GMT etag: - - W/"datetime'2021-03-01T15%3A39%3A04.6098312Z'" + - W/"datetime'2021-03-09T11%3A12%3A29.8909805Z'" expires: - '-1' pragma: 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 810647e3968..1af97b83f8e 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 @@ -14,34 +14,31 @@ interactions: Content-Length: - '85' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A35%3A30.283278Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-18T09%3A02%3A51.8493431Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"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/077c0f8f-9b89-4328-89a2-1a29564a0669?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87b3f0b6-1dfe-4486-b68b-9f3d3205201a?api-version=2020-12-01 cache-control: - no-cache content-length: - - '458' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:35:31 GMT + - Thu, 18 Mar 2021 09:02:53 GMT etag: - - W/"datetime'2021-03-01T15%3A35%3A30.283278Z'" + - W/"datetime'2021-03-18T09%3A02%3A51.8493431Z'" expires: - '-1' pragma: @@ -65,7 +62,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -75,13 +72,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/077c0f8f-9b89-4328-89a2-1a29564a0669?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87b3f0b6-1dfe-4486-b68b-9f3d3205201a?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/077c0f8f-9b89-4328-89a2-1a29564a0669","name":"077c0f8f-9b89-4328-89a2-1a29564a0669","status":"Succeeded","startTime":"2021-03-01T15:35:30.2036468Z","endTime":"2021-03-01T15:35:30.4271607Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87b3f0b6-1dfe-4486-b68b-9f3d3205201a","name":"87b3f0b6-1dfe-4486-b68b-9f3d3205201a","status":"Succeeded","startTime":"2021-03-18T09:02:51.7841929Z","endTime":"2021-03-18T09:02:51.9339758Z","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 @@ -92,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:03 GMT + - Thu, 18 Mar 2021 09:03:24 GMT expires: - '-1' pragma: @@ -118,7 +114,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -128,26 +124,25 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A35%3A30.3893527Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-18T09%3A02%3A51.924397Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '460' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:04 GMT + - Thu, 18 Mar 2021 09:03:24 GMT etag: - - W/"datetime'2021-03-01T15%3A35%3A30.3893527Z'" + - W/"datetime'2021-03-18T09%3A02%3A51.924397Z'" expires: - '-1' pragma: @@ -182,29 +177,27 @@ interactions: - keep-alive ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip + --ldap-signing --allow-local-ldap-users User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A35%3A30.3893527Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-18T09%3A02%3A51.924397Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '460' + - '459' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:06 GMT + - Thu, 18 Mar 2021 09:03:28 GMT etag: - - W/"datetime'2021-03-01T15%3A35%3A30.3893527Z'" + - W/"datetime'2021-03-18T09%3A02%3A51.924397Z'" expires: - '-1' pragma: @@ -229,7 +222,8 @@ interactions: - request: body: '{"properties": {"activeDirectories": [{"username": "aduser", "password": "aduser", "domain": "westcentralus", "dns": "1.2.3.4", "smbServerName": "SMBSERVER", - "kdcIP": "172.16.254.1", "adName": "cli-ad-name"}]}}' + "kdcIP": "172.16.254.1", "adName": "cli-ad-name", "ldapSigning": true, "allowLocalNfsUsersWithLdap": + true}]}}' headers: Accept: - application/json @@ -240,26 +234,24 @@ interactions: Connection: - keep-alive Content-Length: - - '210' + - '267' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip + --ldap-signing --allow-local-ldap-users User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A09.6719928Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","encryption":{}}}' + 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''2021-03-18T09%3A03%3A31.1996078Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","encryption":{}}}' 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/fba45b35-2f8e-4836-8c74-75ebc5a0336d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/684b6db1-2ac8-4f01-9b9b-e36a505e30d7?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -267,13 +259,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:09 GMT + - Thu, 18 Mar 2021 09:03:31 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A09.6719928Z'" + - W/"datetime'2021-03-18T09%3A03%3A31.1996078Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fba45b35-2f8e-4836-8c74-75ebc5a0336d?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/684b6db1-2ac8-4f01-9b9b-e36a505e30d7?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -285,7 +277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -295,7 +287,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -304,14 +296,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip + --ldap-signing --allow-local-ldap-users User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fba45b35-2f8e-4836-8c74-75ebc5a0336d?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/684b6db1-2ac8-4f01-9b9b-e36a505e30d7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fba45b35-2f8e-4836-8c74-75ebc5a0336d","name":"fba45b35-2f8e-4836-8c74-75ebc5a0336d","status":"Succeeded","startTime":"2021-03-01T15:36:09.6132796Z","endTime":"2021-03-01T15:36:10.3114869Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/684b6db1-2ac8-4f01-9b9b-e36a505e30d7","name":"684b6db1-2ac8-4f01-9b9b-e36a505e30d7","status":"Succeeded","startTime":"2021-03-18T09:03:31.1564707Z","endTime":"2021-03-18T09:03:31.6714985Z","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 @@ -322,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:41 GMT + - Thu, 18 Mar 2021 09:04:01 GMT expires: - '-1' pragma: @@ -348,7 +340,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -357,27 +349,27 @@ interactions: - keep-alive ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip + --ldap-signing --allow-local-ldap-users User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A10.3024368Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e5d58a8d-44e5-691a-824a-cea5300f5eef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-18T09%3A03%3A31.6639404Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"b59406b4-a4a5-096d-8631-3e936239cd81","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '855' + - '888' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:41 GMT + - Thu, 18 Mar 2021 09:04:01 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A10.3024368Z'" + - W/"datetime'2021-03-18T09%3A03%3A31.6639404Z'" expires: - '-1' pragma: @@ -413,28 +405,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A10.3024368Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e5d58a8d-44e5-691a-824a-cea5300f5eef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-18T09%3A03%3A31.6639404Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"b59406b4-a4a5-096d-8631-3e936239cd81","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '855' + - '888' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:43 GMT + - Thu, 18 Mar 2021 09:04:03 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A10.3024368Z'" + - W/"datetime'2021-03-18T09%3A03%3A31.6639404Z'" expires: - '-1' pragma: @@ -470,28 +459,25 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A10.3024368Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e5d58a8d-44e5-691a-824a-cea5300f5eef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-18T09%3A03%3A31.6639404Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"b59406b4-a4a5-096d-8631-3e936239cd81","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '855' + - '888' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:45 GMT + - Thu, 18 Mar 2021 09:04:05 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A10.3024368Z'" + - W/"datetime'2021-03-18T09%3A03%3A31.6639404Z'" expires: - '-1' pragma: @@ -528,34 +514,31 @@ interactions: Content-Length: - '92' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A46.6820341Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"e5d58a8d-44e5-691a-824a-cea5300f5eef","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-18T09%3A04%3A06.4739523Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"b59406b4-a4a5-096d-8631-3e936239cd81","username":"aduser","password":"****************","domain":"westcentralus","dns":"1.2.3.4","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true}],"encryption":{"keySource":"Microsoft.NetApp"}}}' 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/6ffa4bec-f0e7-4eda-b6db-924d0e68b0c0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76d94b88-2dd8-42a5-aaf2-54a6e6d429ac?api-version=2020-12-01 cache-control: - no-cache content-length: - - '854' + - '887' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:36:46 GMT + - Thu, 18 Mar 2021 09:04:06 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A46.6820341Z'" + - W/"datetime'2021-03-18T09%3A04%3A06.4739523Z'" expires: - '-1' pragma: @@ -573,7 +556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -583,7 +566,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -593,13 +576,12 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ffa4bec-f0e7-4eda-b6db-924d0e68b0c0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76d94b88-2dd8-42a5-aaf2-54a6e6d429ac?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ffa4bec-f0e7-4eda-b6db-924d0e68b0c0","name":"6ffa4bec-f0e7-4eda-b6db-924d0e68b0c0","status":"Succeeded","startTime":"2021-03-01T15:36:46.6334557Z","endTime":"2021-03-01T15:36:47.3673139Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76d94b88-2dd8-42a5-aaf2-54a6e6d429ac","name":"76d94b88-2dd8-42a5-aaf2-54a6e6d429ac","status":"Succeeded","startTime":"2021-03-18T09:04:06.4385853Z","endTime":"2021-03-18T09:04:06.9224143Z","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 @@ -610,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:37:18 GMT + - Thu, 18 Mar 2021 09:04:36 GMT expires: - '-1' pragma: @@ -636,7 +618,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -646,13 +628,12 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A47.3595099Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-18T09%3A04%3A06.9162694Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -663,9 +644,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:37:18 GMT + - Thu, 18 Mar 2021 09:04:36 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A47.3595099Z'" + - W/"datetime'2021-03-18T09%3A04%3A06.9162694Z'" expires: - '-1' pragma: @@ -701,15 +682,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A36%3A47.3595099Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-18T09%3A04%3A06.9162694Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -720,9 +698,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:37:21 GMT + - Thu, 18 Mar 2021 09:04:38 GMT etag: - - W/"datetime'2021-03-01T15%3A36%3A47.3595099Z'" + - W/"datetime'2021-03-18T09%3A04%3A06.9162694Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_change_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_change_pool.yaml index cad486380f8..bc4b53cee7f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_change_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_change_pool.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,22 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '131' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"7acfc729-c852-4074-98b3-b1ad1d05d7c0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a3ea3a82-f0e1-4b8a-948f-8368ed99c9e3\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"03a481cb-19fd-4bb5-add8-66be8bab3ab0\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"6b2b3d98-e448-47c2-bc40-3e9a40600758\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,15 +36,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9182d6b3-0fa5-408b-afef-c57acef2aa7f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/94e6960a-7e19-42df-8f2b-1d9b30bd4b79?api-version=2020-11-01 cache-control: - no-cache content-length: - - '770' + - '778' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:16:51 GMT + - Fri, 19 Mar 2021 13:49:59 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e364dc3-1719-4875-84b4-547adc92a4e0 + - c086e9d4-6b7f-44ff-9126-67807f2dc81d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9182d6b3-0fa5-408b-afef-c57acef2aa7f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/94e6960a-7e19-42df-8f2b-1d9b30bd4b79?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:16:54 GMT + - Fri, 19 Mar 2021 13:50:02 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7c5d78a-516f-4fa8-8201-91114c2047cb + - 73070724-6f6e-4468-a90a-839a458e1aba status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"94299c54-ea5a-4a59-8bb3-2f5663a34bf5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8784bc63-ce02-4cad-9add-c31bc6dc36cf\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"03a481cb-19fd-4bb5-add8-66be8bab3ab0\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6b2b3d98-e448-47c2-bc40-3e9a40600758\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -144,13 +144,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:16:54 GMT + - Fri, 19 Mar 2021 13:50:02 GMT etag: - - W/"94299c54-ea5a-4a59-8bb3-2f5663a34bf5" + - W/"8784bc63-ce02-4cad-9add-c31bc6dc36cf" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d819ec8b-10f4-4255-84de-376b71d98d6d + - c067641f-c064-4c27-a297-90c0f181f6ea status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"94299c54-ea5a-4a59-8bb3-2f5663a34bf5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8784bc63-ce02-4cad-9add-c31bc6dc36cf\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"03a481cb-19fd-4bb5-add8-66be8bab3ab0\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6b2b3d98-e448-47c2-bc40-3e9a40600758\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -203,13 +203,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:16:56 GMT + - Fri, 19 Mar 2021 13:50:03 GMT etag: - - W/"94299c54-ea5a-4a59-8bb3-2f5663a34bf5" + - W/"8784bc63-ce02-4cad-9add-c31bc6dc36cf" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d044576-e3d4-46b4-8402-5bea0761a78a + - e505f929-83c7-4a16-a99e-720f4aaa714a status: code: 200 message: OK @@ -247,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '603' + - '611' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"c08d1d69-3db0-4198-9b59-b3460183de86\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9b0f94c6-d106-4b66-b619-eaeff2aae96b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"03a481cb-19fd-4bb5-add8-66be8bab3ab0\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"6b2b3d98-e448-47c2-bc40-3e9a40600758\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"c08d1d69-3db0-4198-9b59-b3460183de86\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9b0f94c6-d106-4b66-b619-eaeff2aae96b\\\"\"\ ,\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/\\\"c08d1d69-3db0-4198-9b59-b3460183de86\\\ + ,\r\n \"etag\": \"W/\\\"9b0f94c6-d106-4b66-b619-eaeff2aae96b\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,15 +286,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e6e55371-9fc9-4c69-8fe1-69cb85a332ae?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8ea8e133-356a-4071-b67a-1fb92dfa42ba?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2356' + - '2364' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:16:58 GMT + - Fri, 19 Mar 2021 13:50:05 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 871cff68-3187-4d42-9703-b5995894a0c7 + - 4775e992-3dd6-4188-b2bd-2fda31d05b68 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e6e55371-9fc9-4c69-8fe1-69cb85a332ae?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8ea8e133-356a-4071-b67a-1fb92dfa42ba?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:01 GMT + - Fri, 19 Mar 2021 13:50:08 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f045e208-e702-43e3-bd25-eeb0a8ce7c4a + - eb9a3942-c7b5-45f1-8165-2e0c72fbf0af status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"7d9fc427-738b-44e6-8ea8-550aca8dcc40\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4f666085-88a7-4169-9296-6fe43aded372\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"03a481cb-19fd-4bb5-add8-66be8bab3ab0\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"6b2b3d98-e448-47c2-bc40-3e9a40600758\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"7d9fc427-738b-44e6-8ea8-550aca8dcc40\\\"\"\ + ,\r\n \"etag\": \"W/\\\"4f666085-88a7-4169-9296-6fe43aded372\\\"\"\ ,\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/\\\"7d9fc427-738b-44e6-8ea8-550aca8dcc40\\\ + ,\r\n \"etag\": \"W/\\\"4f666085-88a7-4169-9296-6fe43aded372\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -415,13 +415,13 @@ interactions: cache-control: - no-cache content-length: - - '2358' + - '2366' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:01 GMT + - Fri, 19 Mar 2021 13:50:09 GMT etag: - - W/"7d9fc427-738b-44e6-8ea8-550aca8dcc40" + - W/"4f666085-88a7-4169-9296-6fe43aded372" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d4e918c2-73b5-4ecc-9be0-697a845528ce + - f516e653-60e3-4061-8318-10730bef239f status: code: 200 message: OK @@ -454,36 +454,33 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '64' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A17%3A08.7212012Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T13%3A50%3A17.2206627Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ca90d624-683d-43dc-aac2-3e7f1401f935?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c173c3d4-ff21-482d-a71f-43f68464b19e?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '441' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:09 GMT + - Fri, 19 Mar 2021 13:50:18 GMT etag: - - W/"datetime'2021-03-01T15%3A17%3A08.7212012Z'" + - W/"datetime'2021-03-19T13%3A50%3A17.2206627Z'" expires: - '-1' pragma: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ca90d624-683d-43dc-aac2-3e7f1401f935?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c173c3d4-ff21-482d-a71f-43f68464b19e?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ca90d624-683d-43dc-aac2-3e7f1401f935","name":"ca90d624-683d-43dc-aac2-3e7f1401f935","status":"Succeeded","startTime":"2021-03-01T15:17:08.6608237Z","endTime":"2021-03-01T15:17:08.8158245Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c173c3d4-ff21-482d-a71f-43f68464b19e","name":"c173c3d4-ff21-482d-a71f-43f68464b19e","status":"Succeeded","startTime":"2021-03-19T13:50:17.1668885Z","endTime":"2021-03-19T13:50:17.3166096Z","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' + - '583' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:41 GMT + - Fri, 19 Mar 2021 13:50:48 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,26 +566,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A17%3A08.8002571Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T13%3A50%3A17.3017238Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '434' + - '442' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:42 GMT + - Fri, 19 Mar 2021 13:50:48 GMT etag: - - W/"datetime'2021-03-01T15%3A17%3A08.8002571Z'" + - W/"datetime'2021-03-19T13%3A50%3A17.3017238Z'" expires: - '-1' pragma: @@ -624,36 +619,33 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '96' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A17%3A50.9939547Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A50%3A54.9231557Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0fd897be-e970-4873-a49a-91d8382783d2?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c4c1537-cf66-409f-b432-202cbbc2e4a7?api-version=2020-12-01 cache-control: - no-cache content-length: - - '598' + - '606' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:17:52 GMT + - Fri, 19 Mar 2021 13:50:55 GMT etag: - - W/"datetime'2021-03-01T15%3A17%3A50.9939547Z'" + - W/"datetime'2021-03-19T13%3A50%3A54.9231557Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,24 +679,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0fd897be-e970-4873-a49a-91d8382783d2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c4c1537-cf66-409f-b432-202cbbc2e4a7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0fd897be-e970-4873-a49a-91d8382783d2","name":"0fd897be-e970-4873-a49a-91d8382783d2","status":"Succeeded","startTime":"2021-03-01T15:17:50.8899903Z","endTime":"2021-03-01T15:18:03.3616672Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5c4c1537-cf66-409f-b432-202cbbc2e4a7","name":"5c4c1537-cf66-409f-b432-202cbbc2e4a7","status":"Succeeded","startTime":"2021-03-19T13:50:54.8797343Z","endTime":"2021-03-19T13:50:55.1584648Z","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' + - '622' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:18:24 GMT + - Fri, 19 Mar 2021 13:51:25 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,26 +731,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A18%3A03.3526496Z''\"","location":"eastus","properties":{"poolId":"3b0ab8da-9c68-b540-2c21-04360bdced43","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A50%3A55.1513279Z''\"","location":"eastus","properties":{"poolId":"9f50908e-4dcb-174d-abd9-380b32f3ac90","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '694' + - '702' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:18:24 GMT + - Fri, 19 Mar 2021 13:51:26 GMT etag: - - W/"datetime'2021-03-01T15%3A18%3A03.3526496Z'" + - W/"datetime'2021-03-19T13%3A50%3A55.1513279Z'" expires: - '-1' pragma: @@ -794,37 +784,34 @@ interactions: Connection: - keep-alive Content-Length: - - '394' + - '402' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A18%3A34.5676228Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A51%3A33.6384122Z''\"","location":"eastus","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/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 cache-control: - no-cache content-length: - - '909' + - '917' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:18:35 GMT + - Fri, 19 Mar 2021 13:51:34 GMT etag: - - W/"datetime'2021-03-01T15%3A18%3A34.5676228Z'" + - W/"datetime'2021-03-19T13%3A51%3A33.6384122Z'" expires: - '-1' pragma: @@ -848,7 +835,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,24 +846,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Creating","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:19:06 GMT + - Fri, 19 Mar 2021 13:52:04 GMT expires: - '-1' pragma: @@ -902,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,24 +899,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Creating","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:19:37 GMT + - Fri, 19 Mar 2021 13:52:35 GMT expires: - '-1' pragma: @@ -956,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,24 +952,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Creating","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:20:07 GMT + - Fri, 19 Mar 2021 13:53:05 GMT expires: - '-1' pragma: @@ -1010,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,24 +1005,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Creating","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:20:38 GMT + - Fri, 19 Mar 2021 13:53:35 GMT expires: - '-1' pragma: @@ -1064,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,24 +1058,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Creating","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:21:09 GMT + - Fri, 19 Mar 2021 13:54:05 GMT expires: - '-1' pragma: @@ -1118,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,24 +1111,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6a93f8b5-07cd-4513-869c-4d15899554f0","name":"6a93f8b5-07cd-4513-869c-4d15899554f0","status":"Succeeded","startTime":"2021-03-19T13:51:33.5980375Z","endTime":"2021-03-19T13:54:23.320054Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '654' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:21:40 GMT + - Fri, 19 Mar 2021 13:54:35 GMT expires: - '-1' pragma: @@ -1172,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,24 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Creating","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A54%3A23.3106372Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"2db863c2-961e-5960-3f10-171ab8ab08d4","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_43ae725f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '1842' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:22:10 GMT + - Fri, 19 Mar 2021 13:54:35 GMT + etag: + - W/"datetime'2021-03-19T13%3A54%3A23.3106372Z'" expires: - '-1' pragma: @@ -1223,38 +1205,45 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles pool create Connection: - keep-alive + Content-Length: + - '96' + Content-Type: + - application/json ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients + - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b0b847c5-fc99-4d03-a463-a210131a972e","name":"b0b847c5-fc99-4d03-a463-a210131a972e","status":"Succeeded","startTime":"2021-03-01T15:18:34.5076975Z","endTime":"2021-03-01T15:22:23.4227517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A54%3A42.6162264Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbc82728-c87c-43d6-b753-82fb4b089d52?api-version=2020-12-01 cache-control: - no-cache content-length: - - '647' + - '606' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:22:41 GMT + - Fri, 19 Mar 2021 13:54:43 GMT + etag: + - W/"datetime'2021-03-19T13%3A54%3A42.6162264Z'" expires: - '-1' pragma: @@ -1265,52 +1254,46 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles pool create Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients + - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbc82728-c87c-43d6-b753-82fb4b089d52?api-version=2020-12-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''2021-03-01T15%3A22%3A23.4155789Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"080623e9-052c-9792-f97d-3637c7572c55","fileSystemId":"080623e9-052c-9792-f97d-3637c7572c55","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"080623e9-052c-9792-f97d-3637c7572c55","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_310e7c42","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fbc82728-c87c-43d6-b753-82fb4b089d52","name":"fbc82728-c87c-43d6-b753-82fb4b089d52","status":"Succeeded","startTime":"2021-03-19T13:54:42.5602409Z","endTime":"2021-03-19T13:54:42.7661562Z","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-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '622' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:22:42 GMT - etag: - - W/"datetime'2021-03-01T15%3A22%3A23.4155789Z'" + - Fri, 19 Mar 2021 13:55:13 GMT expires: - '-1' pragma: @@ -1333,48 +1316,38 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"size": 4398046511104, "serviceLevel": - "Premium"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - netappfiles pool create Connection: - keep-alive - Content-Length: - - '88' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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-000005?api-version=2020-12-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-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-01T15%3A22%3A48.6203151Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A54%3A42.7593344Z''\"","location":"eastus","properties":{"poolId":"6232c693-e687-8977-c6fb-4a3b7011d08a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ea59f115-c8d8-42c0-91fb-7c6dadf685a0?api-version=2020-11-01 cache-control: - no-cache content-length: - - '598' + - '702' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:22:49 GMT + - Fri, 19 Mar 2021 13:55:13 GMT etag: - - W/"datetime'2021-03-01T15%3A22%3A48.6203151Z'" + - W/"datetime'2021-03-19T13%3A54%3A42.7593344Z'" expires: - '-1' pragma: @@ -1385,49 +1358,56 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: null + body: '{"newPoolResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005"}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles pool create + - netappfiles volume pool-change Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json ParameterSetName: - - -g -a -p -l --service-level --size + - -g -a -p -v -d User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ea59f115-c8d8-42c0-91fb-7c6dadf685a0?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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-000003/volumes/cli-vol-000004/poolChange?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ea59f115-c8d8-42c0-91fb-7c6dadf685a0","name":"ea59f115-c8d8-42c0-91fb-7c6dadf685a0","status":"Succeeded","startTime":"2021-03-01T15:22:48.5652535Z","endTime":"2021-03-01T15:22:48.7466069Z","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-000005"}}' + string: '' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee25c06d-f272-4e59-a236-8ed960da4a16?api-version=2020-12-01 cache-control: - no-cache content-length: - - '614' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 01 Mar 2021 15:23:21 GMT + - Fri, 19 Mar 2021 13:55:15 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee25c06d-f272-4e59-a236-8ed960da4a16?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1436,51 +1416,46 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles pool create + - netappfiles volume pool-change Connection: - keep-alive ParameterSetName: - - -g -a -p -l --service-level --size + - -g -a -p -v -d User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee25c06d-f272-4e59-a236-8ed960da4a16?api-version=2020-12-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-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-01T15%3A22%3A48.7424007Z''\"","location":"eastus","properties":{"poolId":"3054b7af-e611-6a88-adf0-e018a21e8806","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee25c06d-f272-4e59-a236-8ed960da4a16","name":"ee25c06d-f272-4e59-a236-8ed960da4a16","status":"Succeeded","startTime":"2021-03-19T13:55:16.4755671Z","endTime":"2021-03-19T13:55:24.7541868Z","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: - - '694' + - '655' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:23:21 GMT - etag: - - W/"datetime'2021-03-01T15%3A22%3A48.7424007Z'" + - Fri, 19 Mar 2021 13:55:46 GMT expires: - '-1' pragma: @@ -1502,70 +1477,11 @@ interactions: status: code: 200 message: OK -- request: - body: '{"newPoolResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume pool-change - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -d - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - 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-000003/volumes/cli-vol-000004/poolChange?api-version=2020-11-01 - response: - body: - string: '' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/02f0181f-7d66-41d0-88ff-fdce0b0a08a2?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 01 Mar 2021 15:23:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/02f0181f-7d66-41d0-88ff-fdce0b0a08a2?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1575,24 +1491,23 @@ interactions: ParameterSetName: - -g -a -p -v -d User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/02f0181f-7d66-41d0-88ff-fdce0b0a08a2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee25c06d-f272-4e59-a236-8ed960da4a16?api-version=2020-12-01&operationResultResponseType=Location response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/02f0181f-7d66-41d0-88ff-fdce0b0a08a2","name":"02f0181f-7d66-41d0-88ff-fdce0b0a08a2","status":"Succeeded","startTime":"2021-03-01T15:23:23.6717131Z","endTime":"2021-03-01T15:23:32.3182196Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000005/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A55%3A21.9119216Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"296cf49e-4fd0-11e9-b860-ca0b30681545","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_43ae725f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005/volumes/cli-vol-000004","poolId":"6232c693-e687-8977-c6fb-4a3b7011d08a","mountTargets":[{"provisioningState":"","mountTargetId":"2db863c2-961e-5960-3f10-171ab8ab08d4","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '2381' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:23:55 GMT + - Fri, 19 Mar 2021 13:55:46 GMT expires: - '-1' pragma: @@ -1628,28 +1543,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000005/volumes/cli-vol-000004?api-version=2020-11-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-000005/volumes/cli-vol-000004?api-version=2020-12-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-000005/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000005/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-01T15%3A23%3A32.3100689Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"080623e9-052c-9792-f97d-3637c7572c55","fileSystemId":"080623e9-052c-9792-f97d-3637c7572c55","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"080623e9-052c-9792-f97d-3637c7572c55","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_310e7c42","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000005/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A55%3A24.7470612Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"2db863c2-961e-5960-3f10-171ab8ab08d4","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"2db863c2-961e-5960-3f10-171ab8ab08d4","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_43ae725f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1842' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:23:57 GMT + - Fri, 19 Mar 2021 13:55:49 GMT etag: - - W/"datetime'2021-03-01T15%3A23%3A32.3100689Z'" + - W/"datetime'2021-03-19T13%3A55%3A24.7470612Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml index 08d3d625394..2cecbafccee 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,7 +1,7 @@ interactions: - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"encryption": {}}}' + body: '{"location": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"encryption": {}}}' headers: Accept: - application/json @@ -12,42 +12,35 @@ interactions: Connection: - keep-alive Content-Length: - - '103' + - '107' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A25%3A39.8939138Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-11T11%3A30%3A49.3568092Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"encryption":{},"provisioningState":"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/eccc655f-b550-46c3-84f2-d1f6f8017e46?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ec39ddf6-45b6-4ede-830d-1db49f81c59d?api-version=2020-12-01 cache-control: - no-cache content-length: - - '475' + - '479' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:25:41 GMT + - Thu, 11 Mar 2021 11:30:50 GMT etag: - - W/"datetime'2021-03-01T15%3A25%3A39.8939138Z'" + - W/"datetime'2021-03-11T11%3A30%3A49.3568092Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -55,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -65,7 +58,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -75,30 +68,25 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eccc655f-b550-46c3-84f2-d1f6f8017e46?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ec39ddf6-45b6-4ede-830d-1db49f81c59d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eccc655f-b550-46c3-84f2-d1f6f8017e46","name":"eccc655f-b550-46c3-84f2-d1f6f8017e46","status":"Succeeded","startTime":"2021-03-01T15:25:39.8160261Z","endTime":"2021-03-01T15:25:39.9810611Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ec39ddf6-45b6-4ede-830d-1db49f81c59d","name":"ec39ddf6-45b6-4ede-830d-1db49f81c59d","status":"Succeeded","startTime":"2021-03-11T11:30:49.366556Z","endTime":"2021-03-11T11:30:49.4875717Z","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' + - '579' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:26:13 GMT + - Thu, 11 Mar 2021 11:31: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: @@ -118,7 +106,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -128,32 +116,27 @@ interactions: ParameterSetName: - --resource-group --account-name -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A25%3A39.9749709Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-11T11%3A30%3A49.4798217Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '476' + - '480' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:26:14 GMT + - Thu, 11 Mar 2021 11:31:21 GMT etag: - - W/"datetime'2021-03-01T15%3A25%3A39.9749709Z'" + - W/"datetime'2021-03-11T11%3A30%3A49.4798217Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -183,32 +166,25 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-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''2021-03-01T15%3A25%3A39.9749709Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' + 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''2021-03-11T11%3A30%3A49.4798217Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '488' + - '492' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:26:16 GMT + - Thu, 11 Mar 2021 11:31: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: @@ -228,7 +204,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -240,34 +216,27 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aa298c7e-0115-45a6-aef9-6d21c31a1640?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/77f1366f-ac77-4b38-a1f9-2f1a7e16bb3c?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 01 Mar 2021 15:26:19 GMT + - Thu, 11 Mar 2021 11:31:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aa298c7e-0115-45a6-aef9-6d21c31a1640?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/77f1366f-ac77-4b38-a1f9-2f1a7e16bb3c?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -285,7 +254,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -295,30 +264,25 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aa298c7e-0115-45a6-aef9-6d21c31a1640?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/77f1366f-ac77-4b38-a1f9-2f1a7e16bb3c?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aa298c7e-0115-45a6-aef9-6d21c31a1640","name":"aa298c7e-0115-45a6-aef9-6d21c31a1640","status":"Succeeded","startTime":"2021-03-01T15:26:19.3763804Z","endTime":"2021-03-01T15:26:19.4774045Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/77f1366f-ac77-4b38-a1f9-2f1a7e16bb3c","name":"77f1366f-ac77-4b38-a1f9-2f1a7e16bb3c","status":"Succeeded","startTime":"2021-03-11T11:31:26.0927323Z","endTime":"2021-03-11T11:31:26.1777251Z","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: - - Mon, 01 Mar 2021 15:26:50 GMT + - Thu, 11 Mar 2021 11:31: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: @@ -348,12 +312,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-01 response: body: string: '{"value":[]}' @@ -365,7 +326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:26:51 GMT + - Thu, 11 Mar 2021 11:31:57 GMT expires: - '-1' pragma: @@ -380,8 +341,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": - {"encryption": {}}}' + body: '{"location": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + "properties": {"encryption": {}}}' headers: Accept: - application/json @@ -392,42 +353,35 @@ interactions: Connection: - keep-alive Content-Length: - - '103' + - '107' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A26%3A59.2747812Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-11T11%3A32%3A04.3877763Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"encryption":{},"provisioningState":"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/76618517-7296-4b10-b051-14fbdcab7ad9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b2f08641-4077-4880-98de-d521d366f2ce?api-version=2020-12-01 cache-control: - no-cache content-length: - - '475' + - '479' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:27:00 GMT + - Thu, 11 Mar 2021 11:32:06 GMT etag: - - W/"datetime'2021-03-01T15%3A26%3A59.2747812Z'" + - W/"datetime'2021-03-11T11%3A32%3A04.3877763Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -445,7 +399,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -455,30 +409,25 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76618517-7296-4b10-b051-14fbdcab7ad9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b2f08641-4077-4880-98de-d521d366f2ce?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76618517-7296-4b10-b051-14fbdcab7ad9","name":"76618517-7296-4b10-b051-14fbdcab7ad9","status":"Succeeded","startTime":"2021-03-01T15:26:59.2136231Z","endTime":"2021-03-01T15:26:59.3486329Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b2f08641-4077-4880-98de-d521d366f2ce","name":"b2f08641-4077-4880-98de-d521d366f2ce","status":"Succeeded","startTime":"2021-03-11T11:32:04.398253Z","endTime":"2021-03-11T11:32:04.5243354Z","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' + - '579' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:27:32 GMT + - Thu, 11 Mar 2021 11:32: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: @@ -498,7 +447,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -508,32 +457,27 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A26%3A59.3408277Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-11T11%3A32%3A04.5151164Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '476' + - '480' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:27:33 GMT + - Thu, 11 Mar 2021 11:32:36 GMT etag: - - W/"datetime'2021-03-01T15%3A26%3A59.3408277Z'" + - W/"datetime'2021-03-11T11%3A32%3A04.5151164Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -563,32 +507,25 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-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''2021-03-01T15%3A26%3A59.3408277Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' + 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''2021-03-11T11%3A32%3A04.5151164Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '488' + - '492' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:27:35 GMT + - Thu, 11 Mar 2021 11:32: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: @@ -608,7 +545,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -620,34 +557,27 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03dc8eb4-b000-4d9c-931b-e753a32cd356?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/90dfd04c-944e-448a-91b0-662167fe3249?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 01 Mar 2021 15:27:38 GMT + - Thu, 11 Mar 2021 11:32:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03dc8eb4-b000-4d9c-931b-e753a32cd356?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/90dfd04c-944e-448a-91b0-662167fe3249?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -665,7 +595,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -675,30 +605,25 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03dc8eb4-b000-4d9c-931b-e753a32cd356?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/90dfd04c-944e-448a-91b0-662167fe3249?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/03dc8eb4-b000-4d9c-931b-e753a32cd356","name":"03dc8eb4-b000-4d9c-931b-e753a32cd356","status":"Succeeded","startTime":"2021-03-01T15:27:38.4122933Z","endTime":"2021-03-01T15:27:38.5323733Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/90dfd04c-944e-448a-91b0-662167fe3249","name":"90dfd04c-944e-448a-91b0-662167fe3249","status":"Succeeded","startTime":"2021-03-11T11:32:41.1396384Z","endTime":"2021-03-11T11:32:41.2006454Z","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: - - Mon, 01 Mar 2021 15:28:09 GMT + - Thu, 11 Mar 2021 11:33: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: @@ -728,12 +653,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-01 response: body: string: '{"value":[]}' @@ -745,7 +667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:28:10 GMT + - Thu, 11 Mar 2021 11:33:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup.yaml index fa18c6c8115..86c14589bd6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus2euap", "tags": {}, "properties": {"addressSpace": + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: @@ -12,40 +12,39 @@ interactions: Connection: - keep-alive Content-Length: - - '128' + - '131' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"8ef0333c-bd74-4504-892a-409ad5cf0398\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"5adc75a6-298c-48f5-8b5c-57a332556323\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"d915e0fb-ac6b-4ed8-8e04-29c7542cb1b7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"47b69846-0551-451a-a60b-890249115436\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/3874bcc0-bc92-41f5-bc1a-9e5d702160ba?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d47f043a-352f-4627-bc9c-bab29b60816c?api-version=2020-11-01 cache-control: - no-cache content-length: - - '809' + - '778' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:23 GMT + - Fri, 19 Mar 2021 14:13:28 GMT expires: - '-1' pragma: @@ -58,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0cd9a36-6c13-4ed9-925d-3714a82f5512 + - 7b6477ef-8ec1-44f2-bdf9-0c297bee37e7 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -78,9 +77,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/3874bcc0-bc92-41f5-bc1a-9e5d702160ba?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d47f043a-352f-4627-bc9c-bab29b60816c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:26 GMT + - Fri, 19 Mar 2021 14:13:31 GMT expires: - '-1' pragma: @@ -109,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b7d2d92-f000-4811-9cfc-e031ac25afbf + - 367e0b07-505f-4e77-8ea5-04f4d09d8f78 status: code: 200 message: OK @@ -127,32 +126,31 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"bdec4b54-c70d-4745-9e6c-bfcd88d333b3\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"ed451889-2be0-4618-bad1-1d29682a384d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"d915e0fb-ac6b-4ed8-8e04-29c7542cb1b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"47b69846-0551-451a-a60b-890249115436\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '810' + - '779' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:26 GMT + - Fri, 19 Mar 2021 14:13:32 GMT etag: - - W/"bdec4b54-c70d-4745-9e6c-bfcd88d333b3" + - W/"ed451889-2be0-4618-bad1-1d29682a384d" expires: - '-1' pragma: @@ -169,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 091b0720-0ca2-4ae2-ad65-ca008b2450a6 + - 0d054bcb-8935-4e81-a04d-52a25936ea41 status: code: 200 message: OK @@ -187,32 +185,31 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"bdec4b54-c70d-4745-9e6c-bfcd88d333b3\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"ed451889-2be0-4618-bad1-1d29682a384d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"d915e0fb-ac6b-4ed8-8e04-29c7542cb1b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"47b69846-0551-451a-a60b-890249115436\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '810' + - '779' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:28 GMT + - Fri, 19 Mar 2021 14:13:32 GMT etag: - - W/"bdec4b54-c70d-4745-9e6c-bfcd88d333b3" + - W/"ed451889-2be0-4618-bad1-1d29682a384d" expires: - '-1' pragma: @@ -229,17 +226,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a97abfcf-c803-4bae-b8dc-ac59ad716568 + - b0604b3a-c21d-4969-946e-4a050176b223 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006", - "location": "eastus2euap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false, "enableVmProtection": false}}' + [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -250,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '628' + - '602' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"c44c6871-b4d1-4e3e-a3f5-d8941fc6da83\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"856b396f-aeb0-4eba-8456-33dac412929a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"d915e0fb-ac6b-4ed8-8e04-29c7542cb1b7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"47b69846-0551-451a-a60b-890249115436\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"c44c6871-b4d1-4e3e-a3f5-d8941fc6da83\\\"\"\ + ,\r\n \"etag\": \"W/\\\"856b396f-aeb0-4eba-8456-33dac412929a\\\"\"\ ,\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_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"c44c6871-b4d1-4e3e-a3f5-d8941fc6da83\\\ + ,\r\n \"etag\": \"W/\\\"856b396f-aeb0-4eba-8456-33dac412929a\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,18 +283,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/3521d79f-5b53-4867-9a19-242b7fcab9ee?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/cbd1fecf-94fd-4207-9cd3-34ed0e8dc520?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2368' + - '2337' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:29 GMT + - Fri, 19 Mar 2021 14:13:34 GMT expires: - '-1' pragma: @@ -314,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6eac84f-6714-4952-bbb8-c1b691c8e6b4 + - 0e61d9bc-e029-41ac-9680-03704650fe9f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -334,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/3521d79f-5b53-4867-9a19-242b7fcab9ee?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/cbd1fecf-94fd-4207-9cd3-34ed0e8dc520?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -348,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:32 GMT + - Fri, 19 Mar 2021 14:13:37 GMT expires: - '-1' pragma: @@ -365,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7bea1264-8f30-4949-b083-5d8f23fe4a25 + - 77f014f2-0b3d-43af-9b38-5d2fa126eaf8 status: code: 200 message: OK @@ -383,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"e176a95b-39e9-4889-a44b-e4c4c541ac97\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"11b189be-199a-4f3b-b420-ec0ab8c07232\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"d915e0fb-ac6b-4ed8-8e04-29c7542cb1b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"47b69846-0551-451a-a60b-890249115436\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"e176a95b-39e9-4889-a44b-e4c4c541ac97\\\"\"\ + ,\r\n \"etag\": \"W/\\\"11b189be-199a-4f3b-b420-ec0ab8c07232\\\"\"\ ,\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_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"e176a95b-39e9-4889-a44b-e4c4c541ac97\\\ + ,\r\n \"etag\": \"W/\\\"11b189be-199a-4f3b-b420-ec0ab8c07232\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -413,18 +410,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2370' + - '2339' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:32 GMT + - Fri, 19 Mar 2021 14:13:38 GMT etag: - - W/"e176a95b-39e9-4889-a44b-e4c4c541ac97" + - W/"11b189be-199a-4f3b-b420-ec0ab8c07232" expires: - '-1' pragma: @@ -441,12 +438,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff2336f2-1f95-4202-a720-0a76f0383b26 + - a2e0b7fa-ca27-48f3-a9f6-8c09849bba6e status: code: 200 message: OK - request: - body: '{"location": "eastus2euap"}' + body: '{"location": "southcentralusstage", "properties": {"encryption": {}}}' headers: Accept: - application/json @@ -457,42 +454,35 @@ interactions: Connection: - keep-alive Content-Length: - - '27' + - '69' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T13%3A49%3A38.7188862Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T14%3A13%3A45.0671Z''\"","location":"southcentralusstage","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/97e5e201-2ed5-4c41-9e83-40264572b78a?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4756b2ea-f178-4473-bae9-7404406aaf4f?api-version=2020-12-01 cache-control: - no-cache content-length: - - '422' + - '443' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:49:39 GMT + - Fri, 19 Mar 2021 14:13:45 GMT etag: - - W/"datetime'2021-01-07T13%3A49%3A38.7188862Z'" + - W/"datetime'2021-03-19T14%3A13%3A45.0671Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -510,7 +500,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -520,30 +510,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/97e5e201-2ed5-4c41-9e83-40264572b78a?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4756b2ea-f178-4473-bae9-7404406aaf4f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/97e5e201-2ed5-4c41-9e83-40264572b78a","name":"97e5e201-2ed5-4c41-9e83-40264572b78a","status":"Succeeded","startTime":"2021-01-07T13:49:38.6419234Z","endTime":"2021-01-07T13:49:38.8243787Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4756b2ea-f178-4473-bae9-7404406aaf4f","name":"4756b2ea-f178-4473-bae9-7404406aaf4f","status":"Succeeded","startTime":"2021-03-19T14:13:45.0782451Z","endTime":"2021-03-19T14:13:45.2082497Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '580' + - '588' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:50:11 GMT + - Fri, 19 Mar 2021 14:14: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: @@ -563,7 +548,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -573,32 +558,27 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T13%3A49%3A38.813954Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T14%3A13%3A45.202613Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '422' + - '446' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:50:11 GMT + - Fri, 19 Mar 2021 14:14:16 GMT etag: - - W/"datetime'2021-01-07T13%3A49%3A38.813954Z'" + - W/"datetime'2021-03-19T14%3A13%3A45.202613Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -615,8 +595,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"size": 4398046511104, "serviceLevel": - "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, + "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -627,42 +607,35 @@ interactions: Connection: - keep-alive Content-Length: - - '93' + - '101' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-01-07T13%3A50%3A21.3985489Z''\"","location":"eastus2euap","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-03-19T14%3A14%3A22.611912Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3d74cb41-a91d-4d17-a201-32e0cfad5743?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/271690de-4f69-4c3b-bbed-275b9af40d31?api-version=2020-12-01 cache-control: - no-cache content-length: - - '603' + - '610' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:50:22 GMT + - Fri, 19 Mar 2021 14:14:23 GMT etag: - - W/"datetime'2021-01-07T13%3A50%3A21.3985489Z'" + - W/"datetime'2021-03-19T14%3A14%3A22.611912Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -670,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -680,7 +653,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -690,30 +663,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3d74cb41-a91d-4d17-a201-32e0cfad5743?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/271690de-4f69-4c3b-bbed-275b9af40d31?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3d74cb41-a91d-4d17-a201-32e0cfad5743","name":"3d74cb41-a91d-4d17-a201-32e0cfad5743","status":"Succeeded","startTime":"2021-01-07T13:50:21.3438748Z","endTime":"2021-01-07T13:50:21.5791883Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/271690de-4f69-4c3b-bbed-275b9af40d31","name":"271690de-4f69-4c3b-bbed-275b9af40d31","status":"Succeeded","startTime":"2021-03-19T14:14:22.6177064Z","endTime":"2021-03-19T14:14:22.9408273Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '619' + - '627' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:50:54 GMT + - Fri, 19 Mar 2021 14:14: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: @@ -733,7 +701,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -743,32 +711,27 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-01-07T13%3A50%3A21.5726746Z''\"","location":"eastus2euap","properties":{"poolId":"6f40ead1-da96-bc21-1809-732489ff88b2","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-03-19T14%3A14%3A22.9341978Z''\"","location":"southcentralusstage","properties":{"poolId":"b9688956-72c8-2f68-dc08-f15648e51838","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '699' + - '707' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:50:54 GMT + - Fri, 19 Mar 2021 14:14:53 GMT etag: - - W/"datetime'2021-01-07T13%3A50%3A21.5726746Z'" + - W/"datetime'2021-03-19T14%3A14%3A22.9341978Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -785,7 +748,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"creationToken": "cli-vol-000004", + body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' headers: Accept: @@ -797,42 +760,35 @@ interactions: Connection: - keep-alive Content-Length: - - '363' + - '371' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T13%3A51%3A04.4564896Z''\"","location":"eastus2euap","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A15%3A00.7078999Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 cache-control: - no-cache content-length: - - '880' + - '888' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:51:05 GMT + - Fri, 19 Mar 2021 14:15:02 GMT etag: - - W/"datetime'2021-01-07T13%3A51%3A04.4564896Z'" + - W/"datetime'2021-03-19T14%3A15%3A00.7078999Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -850,7 +806,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -860,30 +816,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:51:36 GMT + - Fri, 19 Mar 2021 14:15: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: @@ -903,7 +854,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,30 +864,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:52:06 GMT + - Fri, 19 Mar 2021 14:16: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: @@ -956,7 +902,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -966,30 +912,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:52:37 GMT + - Fri, 19 Mar 2021 14:16: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: @@ -1009,7 +950,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1019,30 +960,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:53:08 GMT + - Fri, 19 Mar 2021 14:17: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: @@ -1062,7 +998,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1072,30 +1008,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:53:39 GMT + - Fri, 19 Mar 2021 14:17: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: @@ -1115,7 +1046,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1125,30 +1056,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Creating","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:54:10 GMT + - Fri, 19 Mar 2021 14: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: @@ -1168,7 +1094,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1178,30 +1104,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/21f2ae17-2983-49a7-aa2e-49cf65518768","name":"21f2ae17-2983-49a7-aa2e-49cf65518768","status":"Succeeded","startTime":"2021-01-07T13:51:04.4051419Z","endTime":"2021-01-07T13:54:19.1097694Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '652' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:54:41 GMT + - Fri, 19 Mar 2021 14:18: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: @@ -1221,7 +1142,247 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:19:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:19:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:20:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:20:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Creating","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:21:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1231,32 +1392,75 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T13%3A54%3A19.0977664Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_fd60b180","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06e76116-5272-4fb5-8a29-6d92b8144a32","name":"06e76116-5272-4fb5-8a29-6d92b8144a32","status":"Succeeded","startTime":"2021-03-19T14:15:00.7151823Z","endTime":"2021-03-19T14:21:11.4640144Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '1769' + - '660' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:54:41 GMT + - Fri, 19 Mar 2021 14:21:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A21%3A11.4632966Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"mountTargetId":"563e5e55-db7e-48cd-668e-eb8c34372f45","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8dd45edb0b9011eaa2e56e734b166c7d_67db5f3e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1804' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:21:36 GMT etag: - - W/"datetime'2021-01-07T13%3A54%3A19.0977664Z'" + - W/"datetime'2021-03-19T14%3A21%3A11.4632966Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1286,18 +1490,13 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"b519b6f1-1ab6-11eb-b21f-863486e19f06"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: @@ -1305,13 +1504,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:54:45 GMT + - Fri, 19 Mar 2021 14: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: @@ -1328,8 +1525,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' + body: '{"location": "southcentralusstage", "properties": {"dailyBackupsToKeep": + 1, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": + 0, "enabled": true}}' headers: Accept: - application/json @@ -1340,42 +1538,35 @@ interactions: Connection: - keep-alive Content-Length: - - '165' + - '172' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups + - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","name":"cli-acc-000002/cli-sn-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-01-07T13%3A54%3A52.7959783Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007","name":"cli-acc-000002/cli-bp-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-19T14%3A21%3A45.9431508Z''\"","location":"southcentralusstage","properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2b6eda-0ed2-4b2a-9de6-ec8f6b13069d?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c17e730-a785-433b-8285-1309c2df5157?api-version=2020-12-01 cache-control: - no-cache content-length: - - '598' + - '605' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:54:53 GMT + - Fri, 19 Mar 2021 14:21:46 GMT etag: - - W/"datetime'2021-01-07T13%3A54%3A52.7959783Z'" + - W/"datetime'2021-03-19T14%3A21%3A45.9431508Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1383,7 +1574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1393,7 +1584,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1401,32 +1592,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups + - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2b6eda-0ed2-4b2a-9de6-ec8f6b13069d?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c17e730-a785-433b-8285-1309c2df5157?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2b6eda-0ed2-4b2a-9de6-ec8f6b13069d","name":"4c2b6eda-0ed2-4b2a-9de6-ec8f6b13069d","status":"Succeeded","startTime":"2021-01-07T13:54:52.7306768Z","endTime":"2021-01-07T13:54:52.9024998Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7c17e730-a785-433b-8285-1309c2df5157","name":"7c17e730-a785-433b-8285-1309c2df5157","status":"Succeeded","startTime":"2021-03-19T14:21:45.9515035Z","endTime":"2021-03-19T14:21:46.1564739Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '612' + - '620' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:55:24 GMT + - Fri, 19 Mar 2021 14: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: @@ -1446,7 +1632,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1454,34 +1640,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups + - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","name":"cli-acc-000002/cli-sn-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-01-07T13%3A54%3A52.8960497Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"ea5958a7-50ef-11eb-8b0c-6a1aa696ad29","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007","name":"cli-acc-000002/cli-bp-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-19T14%3A21%3A46.1527255Z''\"","location":"southcentralusstage","properties":{"enabled":true,"backupPolicyId":"6f873c4c-88be-11eb-afa1-8e7939edd0e7","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '655' + - '662' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:55:25 GMT + - Fri, 19 Mar 2021 14:22:18 GMT etag: - - W/"datetime'2021-01-07T13%3A54%3A52.8960497Z'" + - W/"datetime'2021-03-19T14%3A21%3A46.1527255Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1511,34 +1692,27 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T13%3A54%3A19.0977664Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_fd60b180","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A21%3A11.4632966Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"mountTargetId":"563e5e55-db7e-48cd-668e-eb8c34372f45","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8dd45edb0b9011eaa2e56e734b166c7d_67db5f3e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '1769' + - '1804' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:55:26 GMT + - Fri, 19 Mar 2021 14:22:20 GMT etag: - - W/"datetime'2021-01-07T13%3A54%3A19.0977664Z'" + - W/"datetime'2021-03-19T14%3A21%3A11.4632966Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1556,7 +1730,7 @@ interactions: message: OK - request: body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "dataProtection": {"backup": {"backupPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007", + "dataProtection": {"backup": {"backupPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007", "policyEnforced": true, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": true}}}}' headers: @@ -1571,38 +1745,179 @@ interactions: Content-Length: - '657' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A22%3A23.0206265Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"mountTargetId":"563e5e55-db7e-48cd-668e-eb8c34372f45","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8dd45edb0b9011eaa2e56e734b166c7d_67db5f3e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '1803' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:22:22 GMT + etag: + - W/"datetime'2021-03-19T14%3A22%3A23.0206265Z'" + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume update + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T13%3A55%3A28.3585313Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":true,"backupPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"d78ec3ee-9c04-0cd5-3c84-a621a4a67841","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_fd60b180","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1","name":"a6eff329-406a-4505-a88e-1a177921dac1","status":"Patching","startTime":"2021-03-19T14:22:23.0272423Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '2341' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:55:48 GMT + - Fri, 19 Mar 2021 14:22:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume update + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6eff329-406a-4505-a88e-1a177921dac1","name":"a6eff329-406a-4505-a88e-1a177921dac1","status":"Succeeded","startTime":"2021-03-19T14:22:23.0272423Z","endTime":"2021-03-19T14:22:54.8593416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:23:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume update + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A22%3A54.8510529Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"mountTargetId":"563e5e55-db7e-48cd-668e-eb8c34372f45","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":true,"backupPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-bp-pol-000007","vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"563e5e55-db7e-48cd-668e-eb8c34372f45","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8dd45edb0b9011eaa2e56e734b166c7d_67db5f3e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '2376' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:23:24 GMT etag: - - W/"datetime'2021-01-07T13%3A55%3A28.3585313Z'" + - W/"datetime'2021-03-19T14%3A22%3A54.8510529Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1613,15 +1928,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus2euap"}' + body: '{"location": "southcentralusstage"}' headers: Accept: - application/json @@ -1632,42 +1945,35 @@ interactions: Connection: - keep-alive Content-Length: - - '27' + - '35' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-backup-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7904df4d-cc84-49d7-8763-d52623a15f12?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c9cda673-4455-49ea-b05a-a9e0a81d7869?api-version=2020-12-01 cache-control: - no-cache content-length: - - '574' + - '586' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:55:50 GMT + - Fri, 19 Mar 2021 14:23:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7904df4d-cc84-49d7-8763-d52623a15f12?api-version=2020-09-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c9cda673-4455-49ea-b05a-a9e0a81d7869?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1685,7 +1991,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1695,30 +2001,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7904df4d-cc84-49d7-8763-d52623a15f12?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c9cda673-4455-49ea-b05a-a9e0a81d7869?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7904df4d-cc84-49d7-8763-d52623a15f12","name":"7904df4d-cc84-49d7-8763-d52623a15f12","status":"Succeeded","startTime":"2021-01-07T13:55:51.0218806Z","endTime":"2021-01-07T13:55:51.9157228Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c9cda673-4455-49ea-b05a-a9e0a81d7869","name":"c9cda673-4455-49ea-b05a-a9e0a81d7869","status":"Succeeded","startTime":"2021-03-19T14:23:26.7236848Z","endTime":"2021-03-19T14:23:38.0664435Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-backup-000005"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '685' + - '695' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:56:22 GMT + - Fri, 19 Mar 2021 14:23: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: @@ -1738,7 +2039,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1748,30 +2049,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-backup-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"creationDate":"2021-01-07T13:55:51Z","backupId":"f050d587-7e9d-3e30-d5a1-d52b8990d87e","size":0,"backupType":"Adhoc","provisioningState":"Failed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"d32aa301-ae99-598b-c0cc-d82cd68bb7cf","created":"2021-03-19T14:23:31Z"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '690' + - '672' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:56:22 GMT + - Fri, 19 Mar 2021 14: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: @@ -1801,32 +2097,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"creationDate":"2021-01-07T13:55:51Z","backupId":"f050d587-7e9d-3e30-d5a1-d52b8990d87e","size":0,"backupType":"Adhoc","provisioningState":"Failed"}}]}' + string: '{"value":[]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '702' + - '12' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 13:56:24 GMT + - Fri, 19 Mar 2021 14:24: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: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup_policies.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup_policies.yaml index 6848edd5f59..0b88e0b30a4 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup_policies.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_backup_policies.yaml @@ -1,786 +1,757 @@ interactions: - - request: - body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - Content-Length: - - '61' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A28%3A07.2405071Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe78a998-e50e-413b-8584-d274cbc48726?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:28:07 GMT - etag: - - W/"datetime'2021-02-25T15%3A28%3A07.2405071Z'" - expires: - - '-1' - pragma: - - no-cache - 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/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe78a998-e50e-413b-8584-d274cbc48726?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe78a998-e50e-413b-8584-d274cbc48726","name":"fe78a998-e50e-413b-8584-d274cbc48726","status":"Succeeded","startTime":"2021-02-25T15:28:07.2487658Z","endTime":"2021-02-25T15:28:07.3224329Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:28:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A28%3A07.3147726Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '439' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:28:39 GMT - etag: - - W/"datetime'2021-02-25T15%3A28%3A07.3147726Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, +- request: + body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '61' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A16%3A28.7483544Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/10c6139f-c65c-4307-8be1-b974707494ae?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:16:29 GMT + etag: + - W/"datetime'2021-03-15T11%3A16%3A28.7483544Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/10c6139f-c65c-4307-8be1-b974707494ae?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/10c6139f-c65c-4307-8be1-b974707494ae","name":"10c6139f-c65c-4307-8be1-b974707494ae","status":"Succeeded","startTime":"2021-03-15T11:16:28.7597507Z","endTime":"2021-03-15T11:16:28.8681341Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '580' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A16%3A28.8188954Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:00 GMT + etag: + - W/"datetime'2021-03-15T11%3A16%3A28.8188954Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": 2, "monthlyBackupsToKeep": 3, "yearlyBackupsToKeep": 0, "enabled": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '210' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups - --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A28%3A46.0046957Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8bac6976-e36d-4b72-bc4f-42423f4419b3?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '638' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:28:47 GMT - etag: - - W/"datetime'2021-02-25T15%3A28%3A46.0046957Z'" - expires: - - '-1' - pragma: - - no-cache - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups - --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8bac6976-e36d-4b72-bc4f-42423f4419b3?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8bac6976-e36d-4b72-bc4f-42423f4419b3","name":"8bac6976-e36d-4b72-bc4f-42423f4419b3","status":"Succeeded","startTime":"2021-02-25T15:28:46.0376362Z","endTime":"2021-02-25T15:28:46.3326549Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:29:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups - --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A28%3A46.3226457Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"2612a707-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '695' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:29:20 GMT - etag: - - W/"datetime'2021-02-25T15%3A28%3A46.3226457Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A28%3A46.3226457Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"2612a707-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '707' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:29:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f4ef6774-65c0-4caf-8f0d-41fbbf61ce1e?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Feb 2021 15:29:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f4ef6774-65c0-4caf-8f0d-41fbbf61ce1e?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy delete - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f4ef6774-65c0-4caf-8f0d-41fbbf61ce1e?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f4ef6774-65c0-4caf-8f0d-41fbbf61ce1e","name":"f4ef6774-65c0-4caf-8f0d-41fbbf61ce1e","status":"Succeeded","startTime":"2021-02-25T15:29:25.9994518Z","endTime":"2021-02-25T15:29:28.5319051Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:29:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '210' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups + --enabled --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A17%3A07.8538043Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ee27fe90-75a6-4697-8fc8-45fcea6d8b40?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '638' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:09 GMT + etag: + - W/"datetime'2021-03-15T11%3A17%3A07.8538043Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups + --enabled --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ee27fe90-75a6-4697-8fc8-45fcea6d8b40?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ee27fe90-75a6-4697-8fc8-45fcea6d8b40","name":"ee27fe90-75a6-4697-8fc8-45fcea6d8b40","status":"Succeeded","startTime":"2021-03-15T11:17:07.8623268Z","endTime":"2021-03-15T11:17:08.1739593Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups + --enabled --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A17%3A08.1638198Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"f959005c-857f-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:40 GMT + etag: + - W/"datetime'2021-03-15T11%3A17%3A08.1638198Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A17%3A08.1638198Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"f959005c-857f-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '707' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:17:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/0937ccc1-05c3-4e97-ba7b-dc35ac419b8d?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Mar 2021 11:17:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/0937ccc1-05c3-4e97-ba7b-dc35ac419b8d?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/0937ccc1-05c3-4e97-ba7b-dc35ac419b8d?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/0937ccc1-05c3-4e97-ba7b-dc35ac419b8d","name":"0937ccc1-05c3-4e97-ba7b-dc35ac419b8d","status":"Succeeded","startTime":"2021-03-15T11:17:46.2081911Z","endTime":"2021-03-15T11:17:48.3176833Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:18:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": 2, "monthlyBackupsToKeep": 3, "yearlyBackupsToKeep": 0, "enabled": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '210' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -b -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A30%3A04.314224Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/92472313-2ba7-44bf-bfd8-836bc29ace93?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:30:04 GMT - etag: - - W/"datetime'2021-02-25T15%3A30%3A04.314224Z'" - expires: - - '-1' - pragma: - - no-cache - 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 account backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/92472313-2ba7-44bf-bfd8-836bc29ace93?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/92472313-2ba7-44bf-bfd8-836bc29ace93","name":"92472313-2ba7-44bf-bfd8-836bc29ace93","status":"Succeeded","startTime":"2021-02-25T15:30:04.3244562Z","endTime":"2021-02-25T15:30:04.4803891Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:30:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a -b -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A30%3A04.474504Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"54ae1774-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '694' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:30:38 GMT - etag: - - W/"datetime'2021-02-25T15%3A30%3A04.474504Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6a5487c8-7ab3-41ce-9f92-4bb59c0751df?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Feb 2021 15:30:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6a5487c8-7ab3-41ce-9f92-4bb59c0751df?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy delete - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6a5487c8-7ab3-41ce-9f92-4bb59c0751df?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6a5487c8-7ab3-41ce-9f92-4bb59c0751df","name":"6a5487c8-7ab3-41ce-9f92-4bb59c0751df","status":"Succeeded","startTime":"2021-02-25T15:30:40.4862168Z","endTime":"2021-02-25T15:30:43.1097985Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:31:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-11-01 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:31:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '210' + Content-Type: + - application/json + ParameterSetName: + - -g -a -b -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A18%3A24.878236Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9aa12dd7-23c8-4485-86e6-c7b96bdacd63?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '637' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:18:26 GMT + etag: + - W/"datetime'2021-03-15T11%3A18%3A24.878236Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a -b -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9aa12dd7-23c8-4485-86e6-c7b96bdacd63?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9aa12dd7-23c8-4485-86e6-c7b96bdacd63","name":"9aa12dd7-23c8-4485-86e6-c7b96bdacd63","status":"Succeeded","startTime":"2021-03-15T11:18:24.8862482Z","endTime":"2021-03-15T11:18:25.0873693Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:18:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a -b -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A18%3A25.0794115Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"2732947c-8580-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:18:56 GMT + etag: + - W/"datetime'2021-03-15T11%3A18%3A25.0794115Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7e10846-6f31-4cf4-8604-b7f2d500a1cb?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Mar 2021 11:19:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7e10846-6f31-4cf4-8604-b7f2d500a1cb?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7e10846-6f31-4cf4-8604-b7f2d500a1cb?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7e10846-6f31-4cf4-8604-b7f2d500a1cb","name":"e7e10846-6f31-4cf4-8604-b7f2d500a1cb","status":"Succeeded","startTime":"2021-03-15T11:19:01.0527072Z","endTime":"2021-03-15T11:19:03.1597231Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:19:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-12-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:19:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml index 83807d1ea60..6e9c2df67f3 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 @@ -13,24 +13,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A25%3A46.4433631Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A23%3A00.8740704Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/d34c1726-12be-405f-bca9-ec88b44f3874?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92dedba9-d061-4e09-97ec-b747b386625b?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:25:47 GMT + - Tue, 09 Mar 2021 11:23:01 GMT etag: - - W/"datetime'2021-03-02T08%3A25%3A46.4433631Z'" + - W/"datetime'2021-03-09T11%3A23%3A00.8740704Z'" expires: - '-1' pragma: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d34c1726-12be-405f-bca9-ec88b44f3874?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92dedba9-d061-4e09-97ec-b747b386625b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d34c1726-12be-405f-bca9-ec88b44f3874","name":"d34c1726-12be-405f-bca9-ec88b44f3874","status":"Succeeded","startTime":"2021-03-02T08:25:46.3795087Z","endTime":"2021-03-02T08:25:46.5304237Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92dedba9-d061-4e09-97ec-b747b386625b","name":"92dedba9-d061-4e09-97ec-b747b386625b","status":"Succeeded","startTime":"2021-03-09T11:23:00.7975793Z","endTime":"2021-03-09T11:23:00.9336791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:26:19 GMT + - Tue, 09 Mar 2021 11:23:31 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A25%3A46.520417Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A23%3A00.935113Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:26:19 GMT + - Tue, 09 Mar 2021 11:23:32 GMT etag: - - W/"datetime'2021-03-02T08%3A25%3A46.520417Z'" + - W/"datetime'2021-03-09T11%3A23%3A00.935113Z'" expires: - '-1' pragma: @@ -183,24 +178,21 @@ interactions: Content-Length: - '135' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A26%3A28.8099084Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T11%3A23%3A39.6653449Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/deacdde3-9feb-4f21-aa7f-a545da83f36f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93ec36db-3c74-4328-9ea7-df6eba52940b?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -208,9 +200,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:26:30 GMT + - Tue, 09 Mar 2021 11:23:40 GMT etag: - - W/"datetime'2021-03-02T08%3A26%3A28.8099084Z'" + - W/"datetime'2021-03-09T11%3A23%3A39.6653449Z'" expires: - '-1' pragma: @@ -224,7 +216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -234,7 +226,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -244,13 +236,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/deacdde3-9feb-4f21-aa7f-a545da83f36f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93ec36db-3c74-4328-9ea7-df6eba52940b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/deacdde3-9feb-4f21-aa7f-a545da83f36f","name":"deacdde3-9feb-4f21-aa7f-a545da83f36f","status":"Succeeded","startTime":"2021-03-02T08:26:28.7454154Z","endTime":"2021-03-02T08:26:29.0732785Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93ec36db-3c74-4328-9ea7-df6eba52940b","name":"93ec36db-3c74-4328-9ea7-df6eba52940b","status":"Succeeded","startTime":"2021-03-09T11:23:39.5943641Z","endTime":"2021-03-09T11:23:39.8912152Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:01 GMT + - Tue, 09 Mar 2021 11:24:11 GMT expires: - '-1' pragma: @@ -287,7 +278,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -297,13 +288,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A26%3A29.0650866Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"a006ec9f-65cf-ff7d-f906-2e98a3b74da4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T11%3A23%3A39.8844991Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e4252c66-d865-fc49-6e7e-13ffda90a8cb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +304,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:02 GMT + - Tue, 09 Mar 2021 11:24:11 GMT etag: - - W/"datetime'2021-03-02T08%3A26%3A29.0650866Z'" + - W/"datetime'2021-03-09T11%3A23%3A39.8844991Z'" expires: - '-1' pragma: @@ -352,15 +342,12 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A26%3A29.0650866Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"a006ec9f-65cf-ff7d-f906-2e98a3b74da4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T11%3A23%3A39.8844991Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"e4252c66-d865-fc49-6e7e-13ffda90a8cb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -371,7 +358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:05 GMT + - Tue, 09 Mar 2021 11:24:13 GMT expires: - '-1' pragma: @@ -397,7 +384,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -409,12 +396,9 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -422,17 +406,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9326c88a-97b0-4496-ac39-7b757c2b76de?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/528c1034-b391-4458-ad08-5c6ca5ba8f83?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 08:27:07 GMT + - Tue, 09 Mar 2021 11:24:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9326c88a-97b0-4496-ac39-7b757c2b76de?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/528c1034-b391-4458-ad08-5c6ca5ba8f83?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -454,7 +438,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -464,13 +448,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9326c88a-97b0-4496-ac39-7b757c2b76de?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/528c1034-b391-4458-ad08-5c6ca5ba8f83?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9326c88a-97b0-4496-ac39-7b757c2b76de","name":"9326c88a-97b0-4496-ac39-7b757c2b76de","status":"Succeeded","startTime":"2021-03-02T08:27:08.0434854Z","endTime":"2021-03-02T08:27:08.3858089Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/528c1034-b391-4458-ad08-5c6ca5ba8f83","name":"528c1034-b391-4458-ad08-5c6ca5ba8f83","status":"Succeeded","startTime":"2021-03-09T11:24:16.2762196Z","endTime":"2021-03-09T11:24:16.5536514Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -481,7 +464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:39 GMT + - Tue, 09 Mar 2021 11:24:46 GMT expires: - '-1' pragma: @@ -517,12 +500,9 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '{"value":[]}' @@ -536,7 +516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:41 GMT + - Tue, 09 Mar 2021 11:24:49 GMT expires: - '-1' pragma: @@ -573,24 +553,21 @@ interactions: Content-Length: - '135' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A27%3A50.2195635Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T11%3A24%3A55.8248986Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/f812b26c-9e0b-4fc8-a820-24c3bc8728fa?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b8f8d97-0494-4417-9d0b-0e6f87db7435?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -598,9 +575,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:27:51 GMT + - Tue, 09 Mar 2021 11:24:57 GMT etag: - - W/"datetime'2021-03-02T08%3A27%3A50.2195635Z'" + - W/"datetime'2021-03-09T11%3A24%3A55.8248986Z'" expires: - '-1' pragma: @@ -624,7 +601,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -634,24 +611,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f812b26c-9e0b-4fc8-a820-24c3bc8728fa?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b8f8d97-0494-4417-9d0b-0e6f87db7435?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f812b26c-9e0b-4fc8-a820-24c3bc8728fa","name":"f812b26c-9e0b-4fc8-a820-24c3bc8728fa","status":"Succeeded","startTime":"2021-03-02T08:27:50.1651324Z","endTime":"2021-03-02T08:27:50.4251702Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b8f8d97-0494-4417-9d0b-0e6f87db7435","name":"2b8f8d97-0494-4417-9d0b-0e6f87db7435","status":"Succeeded","startTime":"2021-03-09T11:24:55.7624136Z","endTime":"2021-03-09T11:24:55.996642Z","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' + - '614' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:28:23 GMT + - Tue, 09 Mar 2021 11:25:27 GMT expires: - '-1' pragma: @@ -677,7 +653,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +663,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A27%3A50.4136995Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"6176071e-1472-7bc5-43fd-ef59dc5e3361","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T11%3A24%3A55.9920158Z''\"","location":"westus2","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"86fab24a-a932-9aae-f5d1-26d7e640438f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -704,9 +679,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:28:23 GMT + - Tue, 09 Mar 2021 11:25:27 GMT etag: - - W/"datetime'2021-03-02T08%3A27%3A50.4136995Z'" + - W/"datetime'2021-03-09T11%3A24%3A55.9920158Z'" expires: - '-1' pragma: @@ -732,7 +707,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -744,12 +719,9 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -757,17 +729,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f1393757-50bf-459e-9de4-e59fc6f41be4?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/268734e3-ea22-4f3d-8050-4596ce81cf62?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 08:28:27 GMT + - Tue, 09 Mar 2021 11:25:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f1393757-50bf-459e-9de4-e59fc6f41be4?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/268734e3-ea22-4f3d-8050-4596ce81cf62?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -789,7 +761,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -799,13 +771,12 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f1393757-50bf-459e-9de4-e59fc6f41be4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/268734e3-ea22-4f3d-8050-4596ce81cf62?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f1393757-50bf-459e-9de4-e59fc6f41be4","name":"f1393757-50bf-459e-9de4-e59fc6f41be4","status":"Succeeded","startTime":"2021-03-02T08:28:27.7642115Z","endTime":"2021-03-02T08:28:28.0014001Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/268734e3-ea22-4f3d-8050-4596ce81cf62","name":"268734e3-ea22-4f3d-8050-4596ce81cf62","status":"Succeeded","startTime":"2021-03-09T11:25:30.8416081Z","endTime":"2021-03-09T11:25:31.2121078Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -816,7 +787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:28:59 GMT + - Tue, 09 Mar 2021 11:26:00 GMT expires: - '-1' pragma: @@ -852,12 +823,9 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '{"value":[]}' @@ -871,7 +839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:29:01 GMT + - Tue, 09 Mar 2021 11:26:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshot_policies.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshot_policies.yaml index 71d60c6fe52..e4bea5b9160 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshot_policies.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshot_policies.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '59' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A40%3A21.1321859Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-22T09%3A42%3A05.5099741Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/192f9f93-6acf-4ef0-a76c-1cadc90899e2?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d5eedd52-978e-43eb-819e-83fdd9921090?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:40:22 GMT + - Mon, 22 Mar 2021 09:42:05 GMT etag: - - W/"datetime'2021-03-02T09%3A40%3A21.1321859Z'" + - W/"datetime'2021-03-22T09%3A42%3A05.5099741Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/192f9f93-6acf-4ef0-a76c-1cadc90899e2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d5eedd52-978e-43eb-819e-83fdd9921090?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/192f9f93-6acf-4ef0-a76c-1cadc90899e2","name":"192f9f93-6acf-4ef0-a76c-1cadc90899e2","status":"Succeeded","startTime":"2021-03-02T09:40:20.6513744Z","endTime":"2021-03-02T09:40:21.204619Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d5eedd52-978e-43eb-819e-83fdd9921090","name":"d5eedd52-978e-43eb-819e-83fdd9921090","status":"Succeeded","startTime":"2021-03-22T09:42:05.3087083Z","endTime":"2021-03-22T09:42:05.595764Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:40:54 GMT + - Mon, 22 Mar 2021 09:42:36 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A40%3A21.1962321Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-22T09%3A42%3A05.5820254Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:40:54 GMT + - Mon, 22 Mar 2021 09:42:36 GMT etag: - - W/"datetime'2021-03-02T09%3A40%3A21.1962321Z'" + - W/"datetime'2021-03-22T09%3A42%3A05.5820254Z'" expires: - '-1' pragma: @@ -186,27 +181,24 @@ interactions: Content-Length: - '385' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name --location --hourly-snapshots --daily-snapshots --weekly-snapshots --monthly-snapshots --hourly-minute --daily-minute --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A40%3A58.3918765Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-22T09%3A42%3A40.1716649Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/2d7ed639-58f9-4fd0-b100-975a96082f73?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/9a6bba47-c258-4de2-8517-4cfbcec40c2d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -214,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:40:57 GMT + - Mon, 22 Mar 2021 09:42:40 GMT etag: - - W/"datetime'2021-03-02T09%3A40%3A58.3918765Z'" + - W/"datetime'2021-03-22T09%3A42%3A40.1716649Z'" expires: - '-1' pragma: @@ -230,126 +222,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name --location --hourly-snapshots --daily-snapshots - --weekly-snapshots --monthly-snapshots --hourly-minute --daily-minute --weekly-minute - --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days - --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/2d7ed639-58f9-4fd0-b100-975a96082f73?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/2d7ed639-58f9-4fd0-b100-975a96082f73","name":"2d7ed639-58f9-4fd0-b100-975a96082f73","status":"Succeeded","startTime":"2021-03-02T09:40:58.326532Z","endTime":"2021-03-02T09:40:58.4815087Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '611' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09: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 snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name --location --hourly-snapshots --daily-snapshots - --weekly-snapshots --monthly-snapshots --hourly-minute --daily-minute --weekly-minute - --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days - --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A40%3A58.4719333Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:41:31 GMT - etag: - - W/"datetime'2021-03-02T09%3A40%3A58.4719333Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -364,15 +242,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A40%3A58.4719333Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-22T09%3A42%3A40.2637308Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -383,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:41:35 GMT + - Mon, 22 Mar 2021 09:42:41 GMT expires: - '-1' pragma: @@ -409,7 +284,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -421,12 +296,9 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: string: '' @@ -434,17 +306,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/26a69829-2538-4c88-a1de-7467f12412fa?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7083c21d-36b4-49df-ab20-0733a6b3cdc0?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:41:37 GMT + - Mon, 22 Mar 2021 09:42:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/26a69829-2538-4c88-a1de-7467f12412fa?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7083c21d-36b4-49df-ab20-0733a6b3cdc0?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -466,7 +338,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -476,13 +348,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/26a69829-2538-4c88-a1de-7467f12412fa?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7083c21d-36b4-49df-ab20-0733a6b3cdc0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/26a69829-2538-4c88-a1de-7467f12412fa","name":"26a69829-2538-4c88-a1de-7467f12412fa","status":"Succeeded","startTime":"2021-03-02T09:41:38.3422563Z","endTime":"2021-03-02T09:41:38.7089881Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7083c21d-36b4-49df-ab20-0733a6b3cdc0","name":"7083c21d-36b4-49df-ab20-0733a6b3cdc0","status":"Succeeded","startTime":"2021-03-22T09:42:43.6985575Z","endTime":"2021-03-22T09:42:43.9283722Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -493,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:42:10 GMT + - Mon, 22 Mar 2021 09:43:13 GMT expires: - '-1' pragma: @@ -533,36 +404,33 @@ interactions: Content-Length: - '385' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A42%3A14.320265Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-22T09%3A43%3A17.1720271Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/588f3121-9c3b-41ce-b4d0-f891a191f84b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/efbea6f1-8945-4ef2-975c-4063e352c682?api-version=2020-12-01 cache-control: - no-cache content-length: - - '796' + - '797' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:42:14 GMT + - Mon, 22 Mar 2021 09:43:16 GMT etag: - - W/"datetime'2021-03-02T09%3A42%3A14.320265Z'" + - W/"datetime'2021-03-22T09%3A43%3A17.1720271Z'" expires: - '-1' pragma: @@ -576,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -586,119 +454,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute - --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour - --weekly-day --monthly-days --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/588f3121-9c3b-41ce-b4d0-f891a191f84b?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/588f3121-9c3b-41ce-b4d0-f891a191f84b","name":"588f3121-9c3b-41ce-b4d0-f891a191f84b","status":"Succeeded","startTime":"2021-03-02T09:42:14.155383Z","endTime":"2021-03-02T09:42:14.4030495Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '611' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:42:45 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute - --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour - --weekly-day --monthly-days --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A42%3A14.3923166Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"1,3,20","hour":4,"minute":40},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:42:46 GMT - etag: - - W/"datetime'2021-03-02T09%3A42%3A14.3923166Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -710,12 +466,9 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: string: '' @@ -723,17 +476,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/995ee418-a754-43fa-a185-4396a1c2763f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b6fb833e-1b11-4a09-bb70-d381acca9e15?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:42:49 GMT + - Mon, 22 Mar 2021 09:43:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/995ee418-a754-43fa-a185-4396a1c2763f?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b6fb833e-1b11-4a09-bb70-d381acca9e15?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -755,7 +508,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -765,13 +518,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/995ee418-a754-43fa-a185-4396a1c2763f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b6fb833e-1b11-4a09-bb70-d381acca9e15?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/995ee418-a754-43fa-a185-4396a1c2763f","name":"995ee418-a754-43fa-a185-4396a1c2763f","status":"Succeeded","startTime":"2021-03-02T09:42:49.2830169Z","endTime":"2021-03-02T09:42:49.5287323Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b6fb833e-1b11-4a09-bb70-d381acca9e15","name":"b6fb833e-1b11-4a09-bb70-d381acca9e15","status":"Succeeded","startTime":"2021-03-22T09:43:18.8771084Z","endTime":"2021-03-22T09:43:19.1005367Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -782,7 +534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:43:20 GMT + - Mon, 22 Mar 2021 09:43:48 GMT expires: - '-1' pragma: @@ -818,12 +570,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-12-01 response: body: string: '{"value":[]}' @@ -837,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:43:23 GMT + - Mon, 22 Mar 2021 09:43:50 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 414c3a2f19c..98ed1609fa7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"06aba7a2-38ed-4761-b465-2151182a24bb\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"89051842-4043-4b10-8b00-08f7ef4afaa3\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"362b787e-9abe-4c76-ba45-6fea1453c2b3\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"11fd28a4-dabe-4746-a8c6-3cd8c68f278b\"\ ,\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d58a8fab-be6a-4441-a86e-0efb2b5350a0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ffff1624-46be-48c5-8477-d9d0272a1ba6?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:36 GMT + - Fri, 19 Mar 2021 09:47:25 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5798c703-2e54-49f3-b772-42442a2c6753 + - 8d73849d-12fa-4fa2-9a55-73275b441f7f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d58a8fab-be6a-4441-a86e-0efb2b5350a0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ffff1624-46be-48c5-8477-d9d0272a1ba6?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:39 GMT + - Fri, 19 Mar 2021 09:47:28 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a7ab6c9-96fb-43ea-95d1-6cbdeaf0aa15 + - c40b639e-ad94-41bc-afc3-81c5a112fbff status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"820c9a79-5f63-44f0-9559-b3f27e86c5d6\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e39f8888-4d79-4c6f-90d6-997305460875\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"362b787e-9abe-4c76-ba45-6fea1453c2b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"11fd28a4-dabe-4746-a8c6-3cd8c68f278b\"\ ,\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:39 GMT + - Fri, 19 Mar 2021 09:47:29 GMT etag: - - W/"820c9a79-5f63-44f0-9559-b3f27e86c5d6" + - W/"e39f8888-4d79-4c6f-90d6-997305460875" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c31712c-74ef-4cf9-88a3-0da9fca94f40 + - b48a5ec6-bb35-4a97-b60b-739824b92787 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"820c9a79-5f63-44f0-9559-b3f27e86c5d6\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e39f8888-4d79-4c6f-90d6-997305460875\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"362b787e-9abe-4c76-ba45-6fea1453c2b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"11fd28a4-dabe-4746-a8c6-3cd8c68f278b\"\ ,\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:40 GMT + - Fri, 19 Mar 2021 09:47:30 GMT etag: - - W/"820c9a79-5f63-44f0-9559-b3f27e86c5d6" + - W/"e39f8888-4d79-4c6f-90d6-997305460875" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e92152f0-d2ee-4b4b-afb8-4afe01f1cb91 + - 60c57c62-2977-4a61-be24-32904f5facee status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"e842122a-5ff0-4386-b4c3-87b2451af5e5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"eab895ff-b89b-4115-92f9-bbdf9def0495\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"362b787e-9abe-4c76-ba45-6fea1453c2b3\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"11fd28a4-dabe-4746-a8c6-3cd8c68f278b\"\ ,\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/\\\"e842122a-5ff0-4386-b4c3-87b2451af5e5\\\"\"\ + ,\r\n \"etag\": \"W/\\\"eab895ff-b89b-4115-92f9-bbdf9def0495\\\"\"\ ,\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/\\\"e842122a-5ff0-4386-b4c3-87b2451af5e5\\\ + ,\r\n \"etag\": \"W/\\\"eab895ff-b89b-4115-92f9-bbdf9def0495\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03f9c403-531a-46b7-a659-6d479a9ba40c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0e78597-35b7-48ae-89c4-c95cac374934?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:41 GMT + - Fri, 19 Mar 2021 09:47:31 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4aeb0f6a-5b0c-439d-8b33-b9d8701b29ea + - 82bac124-d33b-49c3-b390-3fa7c7e24284 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03f9c403-531a-46b7-a659-6d479a9ba40c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a0e78597-35b7-48ae-89c4-c95cac374934?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:45 GMT + - Fri, 19 Mar 2021 09:47:35 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51088cde-c790-44ac-86e7-a75d2cad79f9 + - c54145a6-06d0-4dd2-a2b0-e8478ac68463 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"81cfe6e2-57b3-474e-86b0-60756ede862a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"770bb455-2df5-448e-96da-04e99ad1f1cc\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"362b787e-9abe-4c76-ba45-6fea1453c2b3\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"11fd28a4-dabe-4746-a8c6-3cd8c68f278b\"\ ,\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/\\\"81cfe6e2-57b3-474e-86b0-60756ede862a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"770bb455-2df5-448e-96da-04e99ad1f1cc\\\"\"\ ,\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/\\\"81cfe6e2-57b3-474e-86b0-60756ede862a\\\ + ,\r\n \"etag\": \"W/\\\"770bb455-2df5-448e-96da-04e99ad1f1cc\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:45 GMT + - Fri, 19 Mar 2021 09:47:35 GMT etag: - - W/"81cfe6e2-57b3-474e-86b0-60756ede862a" + - W/"770bb455-2df5-448e-96da-04e99ad1f1cc" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57fec2e0-9cf5-49b4-a2f2-ab8569bccf43 + - 88e965de-3088-46ba-bc8f-2bd39682ca3a status: code: 200 message: OK @@ -456,34 +456,31 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A56%3A53.4996113Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T09%3A47%3A43.741095Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/270ec023-8057-410c-bcc4-9d6c1386d9e5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ebf207aa-ae90-4166-b1d2-220b6a9821fc?api-version=2020-12-01 cache-control: - no-cache content-length: - - '434' + - '433' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:56:55 GMT + - Fri, 19 Mar 2021 09:47:44 GMT etag: - - W/"datetime'2021-03-02T08%3A56%3A53.4996113Z'" + - W/"datetime'2021-03-19T09%3A47%3A43.741095Z'" expires: - '-1' pragma: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/270ec023-8057-410c-bcc4-9d6c1386d9e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ebf207aa-ae90-4166-b1d2-220b6a9821fc?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/270ec023-8057-410c-bcc4-9d6c1386d9e5","name":"270ec023-8057-410c-bcc4-9d6c1386d9e5","status":"Succeeded","startTime":"2021-03-02T08:56:53.4377961Z","endTime":"2021-03-02T08:56:53.5786396Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ebf207aa-ae90-4166-b1d2-220b6a9821fc","name":"ebf207aa-ae90-4166-b1d2-220b6a9821fc","status":"Succeeded","startTime":"2021-03-19T09:47:43.6681496Z","endTime":"2021-03-19T09:47:43.8152541Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:57:26 GMT + - Fri, 19 Mar 2021 09:48:15 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A56%3A53.5726637Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T09%3A47%3A43.8071429Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:57:27 GMT + - Fri, 19 Mar 2021 09:48:15 GMT etag: - - W/"datetime'2021-03-02T08%3A56%3A53.5726637Z'" + - W/"datetime'2021-03-19T09%3A47%3A43.8071429Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A57%3A35.3906896Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T09%3A48%3A24.0230342Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/c322b4c4-46fa-45ba-bf35-fc5f8c0e503f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b0449c3-7c13-40f9-84b4-5d9e92fd04a3?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:57:36 GMT + - Fri, 19 Mar 2021 09:48:25 GMT etag: - - W/"datetime'2021-03-02T08%3A57%3A35.3906896Z'" + - W/"datetime'2021-03-19T09%3A48%3A24.0230342Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c322b4c4-46fa-45ba-bf35-fc5f8c0e503f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b0449c3-7c13-40f9-84b4-5d9e92fd04a3?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c322b4c4-46fa-45ba-bf35-fc5f8c0e503f","name":"c322b4c4-46fa-45ba-bf35-fc5f8c0e503f","status":"Succeeded","startTime":"2021-03-02T08:57:35.3401067Z","endTime":"2021-03-02T08:57:35.5132471Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b0449c3-7c13-40f9-84b4-5d9e92fd04a3","name":"0b0449c3-7c13-40f9-84b4-5d9e92fd04a3","status":"Succeeded","startTime":"2021-03-19T09:48:23.9715833Z","endTime":"2021-03-19T09:48:24.2176621Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:58:08 GMT + - Fri, 19 Mar 2021 09:48:54 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A57%3A35.5097758Z''\"","location":"westus2","properties":{"poolId":"6552462b-f043-8d54-7201-a4c087e26941","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T09%3A48%3A24.2081684Z''\"","location":"westus2","properties":{"poolId":"19704e82-8aa2-da20-5ec2-3a4102545ce9","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:58:09 GMT + - Fri, 19 Mar 2021 09:48:56 GMT etag: - - W/"datetime'2021-03-02T08%3A57%3A35.5097758Z'" + - W/"datetime'2021-03-19T09%3A48%3A24.2081684Z'" expires: - '-1' pragma: @@ -796,25 +786,22 @@ interactions: Content-Length: - '389' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A58%3A19.8886433Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T09%3A49%3A05.5688817Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:58:21 GMT + - Fri, 19 Mar 2021 09:49:06 GMT etag: - - W/"datetime'2021-03-02T08%3A58%3A19.8886433Z'" + - W/"datetime'2021-03-19T09%3A49%3A05.5688817Z'" expires: - '-1' pragma: @@ -848,7 +835,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Creating","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Creating","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -876,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:58:52 GMT + - Fri, 19 Mar 2021 09:49:37 GMT expires: - '-1' pragma: @@ -902,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Creating","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Creating","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:59:25 GMT + - Fri, 19 Mar 2021 09:50:06 GMT expires: - '-1' pragma: @@ -956,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Creating","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Creating","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:59:55 GMT + - Fri, 19 Mar 2021 09:50:37 GMT expires: - '-1' pragma: @@ -1010,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Creating","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Creating","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:00:26 GMT + - Fri, 19 Mar 2021 09:51:08 GMT expires: - '-1' pragma: @@ -1064,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Creating","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Creating","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:00:56 GMT + - Fri, 19 Mar 2021 09:51:38 GMT expires: - '-1' pragma: @@ -1118,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +1111,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1c2aa8f4-4178-43a9-a643-6d931907d988","name":"1c2aa8f4-4178-43a9-a643-6d931907d988","status":"Succeeded","startTime":"2021-03-02T08:58:19.8278152Z","endTime":"2021-03-02T09:01:25.7406646Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34ff779c-3c19-4c37-a4b6-4783dcb24891","name":"34ff779c-3c19-4c37-a4b6-4783dcb24891","status":"Succeeded","startTime":"2021-03-19T09:49:05.5005162Z","endTime":"2021-03-19T09:51:52.8245552Z","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 @@ -1146,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:01:28 GMT + - Fri, 19 Mar 2021 09:52:09 GMT expires: - '-1' pragma: @@ -1172,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,26 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A01%3A25.7340852Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"9801d9d1-8877-d5f8-3d19-f9844bfa3cef","fileSystemId":"9801d9d1-8877-d5f8-3d19-f9844bfa3cef","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"9801d9d1-8877-d5f8-3d19-f9844bfa3cef","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_cca51e80","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + 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''2021-03-19T09%3A51%3A52.8170342Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"ceb7b522-f353-94c9-a96c-16964c42e747","fileSystemId":"ceb7b522-f353-94c9-a96c-16964c42e747","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"ceb7b522-f353-94c9-a96c-16964c42e747","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_a8c6b892","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1809' + - '1829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:01:28 GMT + - Fri, 19 Mar 2021 09:52:09 GMT etag: - - W/"datetime'2021-03-02T09%3A01%3A25.7340852Z'" + - W/"datetime'2021-03-19T09%3A51%3A52.8170342Z'" expires: - '-1' pragma: @@ -1238,16 +1218,13 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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","name":"cli-sn-000005"}}' @@ -1255,7 +1232,7 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04809b51-75fa-41ad-b43f-7f2e02ce75e5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2692491d-2bdb-4cde-9546-eb98889f763b?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1263,11 +1240,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:01:31 GMT + - Fri, 19 Mar 2021 09:52:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04809b51-75fa-41ad-b43f-7f2e02ce75e5?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2692491d-2bdb-4cde-9546-eb98889f763b?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1289,7 +1266,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1299,24 +1276,23 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04809b51-75fa-41ad-b43f-7f2e02ce75e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2692491d-2bdb-4cde-9546-eb98889f763b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04809b51-75fa-41ad-b43f-7f2e02ce75e5","name":"04809b51-75fa-41ad-b43f-7f2e02ce75e5","status":"Succeeded","startTime":"2021-03-02T09:01:31.5443127Z","endTime":"2021-03-02T09:01:34.2259511Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2692491d-2bdb-4cde-9546-eb98889f763b","name":"2692491d-2bdb-4cde-9546-eb98889f763b","status":"Succeeded","startTime":"2021-03-19T09:52:11.9580517Z","endTime":"2021-03-19T09:52:14.369732Z","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' + - '682' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:02:04 GMT + - Fri, 19 Mar 2021 09:52:41 GMT expires: - '-1' pragma: @@ -1342,7 +1318,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1352,13 +1328,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"3903ce64-8a66-9ac2-ca2d-3ae3ee45e3cb","name":"cli-sn-000005","created":"2021-03-02T09:01:32Z"}}' + 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":"c95ecb81-9b49-4ca2-e687-1c227902e5bc","name":"cli-sn-000005","created":"2021-03-19T09:52:12Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1369,7 +1344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:02:05 GMT + - Fri, 19 Mar 2021 09:52:42 GMT expires: - '-1' pragma: @@ -1405,15 +1380,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"3903ce64-8a66-9ac2-ca2d-3ae3ee45e3cb","fileSystemId":"9801d9d1-8877-d5f8-3d19-f9844bfa3cef","name":"cli-sn-000005","created":"2021-03-02T09:01:32Z"}}]}' + 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":"c95ecb81-9b49-4ca2-e687-1c227902e5bc","fileSystemId":"ceb7b522-f353-94c9-a96c-16964c42e747","name":"cli-sn-000005","created":"2021-03-19T09:52:12Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1424,7 +1396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:02:07 GMT + - Fri, 19 Mar 2021 09:52:45 GMT expires: - '-1' pragma: @@ -1450,7 +1422,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1462,12 +1434,9 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -1475,17 +1444,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2e7b15c7-8af5-4de9-806e-a39eabf582e7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56967e44-99a4-40e6-855e-e9c9179dcffb?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:02:09 GMT + - Fri, 19 Mar 2021 09:52:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2e7b15c7-8af5-4de9-806e-a39eabf582e7?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56967e44-99a4-40e6-855e-e9c9179dcffb?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1507,7 +1476,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1517,13 +1486,12 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2e7b15c7-8af5-4de9-806e-a39eabf582e7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56967e44-99a4-40e6-855e-e9c9179dcffb?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2e7b15c7-8af5-4de9-806e-a39eabf582e7","name":"2e7b15c7-8af5-4de9-806e-a39eabf582e7","status":"Succeeded","startTime":"2021-03-02T09:02:09.9561705Z","endTime":"2021-03-02T09:02:13.2629394Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56967e44-99a4-40e6-855e-e9c9179dcffb","name":"56967e44-99a4-40e6-855e-e9c9179dcffb","status":"Succeeded","startTime":"2021-03-19T09:52:46.8801742Z","endTime":"2021-03-19T09:52:49.0087477Z","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 @@ -1534,7 +1502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:02:41 GMT + - Fri, 19 Mar 2021 09:53:17 GMT expires: - '-1' pragma: @@ -1570,12 +1538,9 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '{"value":[]}' @@ -1589,7 +1554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:02:44 GMT + - Fri, 19 Mar 2021 09:53:19 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 836f65fb4a1..b421b5030aa 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"db0587b7-dc8b-43d1-a972-36497917df95\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9cd6e67c-a557-47a2-b309-e524260a697e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"59e4d35c-0c52-4347-86bd-455f73ab1fdb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"c3328bbd-a62c-4e6c-afdd-73733023b0f2\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e506b4e-e236-4281-8df8-7667e7464dd6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fe4c919-3bc8-456b-91be-3a6b86dd1dcd?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:37 GMT + - Fri, 19 Mar 2021 11:05:39 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5050b65-4d73-4c77-98a3-61124ff7de15 + - a1d96a39-0635-42ea-9bd0-827b77968942 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e506b4e-e236-4281-8df8-7667e7464dd6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fe4c919-3bc8-456b-91be-3a6b86dd1dcd?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:41 GMT + - Fri, 19 Mar 2021 11:05:42 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3e18a13-a728-494c-9142-968f74a09973 + - abcec480-37a7-4e43-b4fa-8affa3dacdaa status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"114c8d1c-f74d-49b2-9a9d-2140025aa68c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"601e2c30-86e6-407b-83df-eb05aee06d76\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"59e4d35c-0c52-4347-86bd-455f73ab1fdb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c3328bbd-a62c-4e6c-afdd-73733023b0f2\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:42 GMT + - Fri, 19 Mar 2021 11:05:42 GMT etag: - - W/"114c8d1c-f74d-49b2-9a9d-2140025aa68c" + - W/"601e2c30-86e6-407b-83df-eb05aee06d76" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d191edef-4465-490b-987a-5f6f56bc4024 + - ca75a614-1051-4c1a-80e7-d86c30a89db0 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"114c8d1c-f74d-49b2-9a9d-2140025aa68c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"601e2c30-86e6-407b-83df-eb05aee06d76\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"59e4d35c-0c52-4347-86bd-455f73ab1fdb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c3328bbd-a62c-4e6c-afdd-73733023b0f2\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:43 GMT + - Fri, 19 Mar 2021 11:05:43 GMT etag: - - W/"114c8d1c-f74d-49b2-9a9d-2140025aa68c" + - W/"601e2c30-86e6-407b-83df-eb05aee06d76" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2b94ca5-bfd3-41d7-8374-ac25a8be5afc + - 9c464449-5e85-4ea7-b0a4-fcebeeabbddc status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"a8fdac39-0b55-483b-b159-ba81fe37c1af\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"33ccb98d-7588-45c5-bb36-224f47d7102b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"59e4d35c-0c52-4347-86bd-455f73ab1fdb\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"c3328bbd-a62c-4e6c-afdd-73733023b0f2\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"a8fdac39-0b55-483b-b159-ba81fe37c1af\\\"\"\ + ,\r\n \"etag\": \"W/\\\"33ccb98d-7588-45c5-bb36-224f47d7102b\\\"\"\ ,\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/\\\"a8fdac39-0b55-483b-b159-ba81fe37c1af\\\ + ,\r\n \"etag\": \"W/\\\"33ccb98d-7588-45c5-bb36-224f47d7102b\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a9d1e774-530d-4644-9f45-245d5f51edae?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcdab7aa-4072-4b59-9f22-3bae7eecd5af?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:44 GMT + - Fri, 19 Mar 2021 11:05:45 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3a821d9-01ca-4c13-afbe-fe2220d90e81 + - e84f1b23-e9ce-400b-a190-bd5e68a86cb8 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a9d1e774-530d-4644-9f45-245d5f51edae?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcdab7aa-4072-4b59-9f22-3bae7eecd5af?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:47 GMT + - Fri, 19 Mar 2021 11:05:48 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43921163-98ff-40d1-b048-2f7a696db88a + - 49f9b93b-7a18-4a7c-90dc-ca14d971bebc status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"cabfe6c1-e96f-47fa-a83b-db9fe1bb8626\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8ecd6aca-1201-40b3-9e2b-1f5c84010f45\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"59e4d35c-0c52-4347-86bd-455f73ab1fdb\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"c3328bbd-a62c-4e6c-afdd-73733023b0f2\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"cabfe6c1-e96f-47fa-a83b-db9fe1bb8626\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8ecd6aca-1201-40b3-9e2b-1f5c84010f45\\\"\"\ ,\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/\\\"cabfe6c1-e96f-47fa-a83b-db9fe1bb8626\\\ + ,\r\n \"etag\": \"W/\\\"8ecd6aca-1201-40b3-9e2b-1f5c84010f45\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:59:47 GMT + - Fri, 19 Mar 2021 11:05:48 GMT etag: - - W/"cabfe6c1-e96f-47fa-a83b-db9fe1bb8626" + - W/"8ecd6aca-1201-40b3-9e2b-1f5c84010f45" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb37e4ce-d761-4d08-a333-08ff9dddab15 + - 23500c4a-346b-4bd9-b66c-7b23c79a50ca status: code: 200 message: OK @@ -456,34 +456,31 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A00%3A42.3247787Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A05%3A55.353154Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80ee756a-b7a7-4e76-8fd7-216c3fdb1769?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bcecc11f-0ff4-4e89-bb72-a0d9004d4e61?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '432' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:00:43 GMT + - Fri, 19 Mar 2021 11:05:55 GMT etag: - - W/"datetime'2021-03-02T10%3A00%3A42.3247787Z'" + - W/"datetime'2021-03-19T11%3A05%3A55.353154Z'" expires: - '-1' pragma: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80ee756a-b7a7-4e76-8fd7-216c3fdb1769?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bcecc11f-0ff4-4e89-bb72-a0d9004d4e61?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/80ee756a-b7a7-4e76-8fd7-216c3fdb1769","name":"80ee756a-b7a7-4e76-8fd7-216c3fdb1769","status":"Succeeded","startTime":"2021-03-02T10:00:42.2496213Z","endTime":"2021-03-02T10:00:42.4446276Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bcecc11f-0ff4-4e89-bb72-a0d9004d4e61","name":"bcecc11f-0ff4-4e89-bb72-a0d9004d4e61","status":"Succeeded","startTime":"2021-03-19T11:05:55.2682635Z","endTime":"2021-03-19T11:05:55.4343583Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:01:14 GMT + - Fri, 19 Mar 2021 11:06:26 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A00%3A42.4258505Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T11%3A05%3A55.4242048Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:01:15 GMT + - Fri, 19 Mar 2021 11:06:26 GMT etag: - - W/"datetime'2021-03-02T10%3A00%3A42.4258505Z'" + - W/"datetime'2021-03-19T11%3A05%3A55.4242048Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '134' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A01%3A22.8854828Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A06%3A34.1638036Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a774dbb3-fa6f-4387-9a9e-3e23b71a8155?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b404130a-c9fc-4609-a96d-e6cb2533e784?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:01:24 GMT + - Fri, 19 Mar 2021 11:06:34 GMT etag: - - W/"datetime'2021-03-02T10%3A01%3A22.8854828Z'" + - W/"datetime'2021-03-19T11%3A06%3A34.1638036Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a774dbb3-fa6f-4387-9a9e-3e23b71a8155?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b404130a-c9fc-4609-a96d-e6cb2533e784?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a774dbb3-fa6f-4387-9a9e-3e23b71a8155","name":"a774dbb3-fa6f-4387-9a9e-3e23b71a8155","status":"Succeeded","startTime":"2021-03-02T10:01:22.8311851Z","endTime":"2021-03-02T10:01:23.6546141Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b404130a-c9fc-4609-a96d-e6cb2533e784","name":"b404130a-c9fc-4609-a96d-e6cb2533e784","status":"Succeeded","startTime":"2021-03-19T11:06:34.1124475Z","endTime":"2021-03-19T11:06:34.3237853Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:01:58 GMT + - Fri, 19 Mar 2021 11:07:05 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A01%3A23.6460203Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"d720cf00-f040-dcb3-c54f-4ab8fa18d384","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A06%3A34.3149105Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"poolId":"61738072-61c2-5cd0-a9bd-696ecee078aa","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:01:59 GMT + - Fri, 19 Mar 2021 11:07:05 GMT etag: - - W/"datetime'2021-03-02T10%3A01%3A23.6460203Z'" + - W/"datetime'2021-03-19T11%3A06%3A34.3149105Z'" expires: - '-1' pragma: @@ -797,36 +787,33 @@ interactions: Content-Length: - '468' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A02%3A09.2693046Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A07%3A13.119555Z''\"","location":"eastus","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/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 cache-control: - no-cache content-length: - - '976' + - '975' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:02:09 GMT + - Fri, 19 Mar 2021 11:07:14 GMT etag: - - W/"datetime'2021-03-02T10%3A02%3A09.2693046Z'" + - W/"datetime'2021-03-19T11%3A07%3A13.119555Z'" expires: - '-1' pragma: @@ -840,7 +827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -850,62 +837,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - 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 --rule-index - --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 10:02: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: @@ -917,13 +849,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -934,7 +865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:03:11 GMT + - Fri, 19 Mar 2021 11:07:44 GMT expires: - '-1' pragma: @@ -960,7 +891,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -972,13 +903,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -989,7 +919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:03:44 GMT + - Fri, 19 Mar 2021 11:08:14 GMT expires: - '-1' pragma: @@ -1015,7 +945,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1027,13 +957,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1044,7 +973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:04:14 GMT + - Fri, 19 Mar 2021 11:08:45 GMT expires: - '-1' pragma: @@ -1070,7 +999,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1082,13 +1011,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1099,7 +1027,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:04:45 GMT + - Fri, 19 Mar 2021 11:09:14 GMT expires: - '-1' pragma: @@ -1125,7 +1053,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1137,13 +1065,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1154,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:05:16 GMT + - Fri, 19 Mar 2021 11:09:45 GMT expires: - '-1' pragma: @@ -1180,7 +1107,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1192,13 +1119,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Creating","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Creating","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1209,7 +1135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:05:47 GMT + - Fri, 19 Mar 2021 11:10:16 GMT expires: - '-1' pragma: @@ -1235,7 +1161,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1247,13 +1173,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f2187f30-3a5a-4ae6-a84a-7e7ab280764e","name":"f2187f30-3a5a-4ae6-a84a-7e7ab280764e","status":"Succeeded","startTime":"2021-03-02T10:02:09.2028469Z","endTime":"2021-03-02T10:06:05.9015632Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/944ebfcf-a046-4fab-82b8-7eee51b55f53","name":"944ebfcf-a046-4fab-82b8-7eee51b55f53","status":"Succeeded","startTime":"2021-03-19T11:07:13.0590436Z","endTime":"2021-03-19T11:10:24.4433553Z","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 @@ -1264,7 +1189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:06:17 GMT + - Fri, 19 Mar 2021 11:10:45 GMT expires: - '-1' pragma: @@ -1290,7 +1215,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1302,26 +1227,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A06%3A05.8897555Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"e6a0267f-990c-8d30-1737-012ef9ab0430","fileSystemId":"e6a0267f-990c-8d30-1737-012ef9ab0430","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"e6a0267f-990c-8d30-1737-012ef9ab0430","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_37a9f5bd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A10%3A24.4338483Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","fileSystemId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_d2aa2bf8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1855' + - '1875' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:06:18 GMT + - Fri, 19 Mar 2021 11:10:45 GMT etag: - - W/"datetime'2021-03-02T10%3A06%3A05.8897555Z'" + - W/"datetime'2021-03-19T11%3A10%3A24.4338483Z'" expires: - '-1' pragma: @@ -1357,26 +1281,23 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A06%3A05.8897555Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"e6a0267f-990c-8d30-1737-012ef9ab0430","fileSystemId":"e6a0267f-990c-8d30-1737-012ef9ab0430","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"e6a0267f-990c-8d30-1737-012ef9ab0430","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_37a9f5bd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' + 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''2021-03-19T11%3A10%3A24.4338483Z''\"","location":"eastus","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","fileSystemId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"3fe4c39e-b39a-6e4f-fef8-332547a0ecab","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_d2aa2bf8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1867' + - '1887' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:06:20 GMT + - Fri, 19 Mar 2021 11:10:48 GMT expires: - '-1' pragma: @@ -1402,7 +1323,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1414,12 +1335,9 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -1427,17 +1345,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 10:06:23 GMT + - Fri, 19 Mar 2021 11:10:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1459,7 +1377,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1469,13 +1387,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4","name":"5422eeaa-7e9c-4237-b713-c8cdca5164a4","status":"Deleting","startTime":"2021-03-02T10:06:23.6308291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893","name":"6898ae61-c874-428e-94a6-627820f99893","status":"Deleting","startTime":"2021-03-19T11:10:51.8415923Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1486,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:06:54 GMT + - Fri, 19 Mar 2021 11:11:22 GMT expires: - '-1' pragma: @@ -1512,7 +1429,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1522,13 +1439,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4","name":"5422eeaa-7e9c-4237-b713-c8cdca5164a4","status":"Deleting","startTime":"2021-03-02T10:06:23.6308291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893","name":"6898ae61-c874-428e-94a6-627820f99893","status":"Deleting","startTime":"2021-03-19T11:10:51.8415923Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1539,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:07:25 GMT + - Fri, 19 Mar 2021 11:11:51 GMT expires: - '-1' pragma: @@ -1565,7 +1481,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1575,13 +1491,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5422eeaa-7e9c-4237-b713-c8cdca5164a4","name":"5422eeaa-7e9c-4237-b713-c8cdca5164a4","status":"Succeeded","startTime":"2021-03-02T10:06:23.6308291Z","endTime":"2021-03-02T10:07:37.6188255Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6898ae61-c874-428e-94a6-627820f99893","name":"6898ae61-c874-428e-94a6-627820f99893","status":"Succeeded","startTime":"2021-03-19T11:10:51.8415923Z","endTime":"2021-03-19T11:12:01.0217752Z","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 @@ -1592,7 +1507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:07:56 GMT + - Fri, 19 Mar 2021 11:12:22 GMT expires: - '-1' pragma: @@ -1628,12 +1543,9 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '{"value":[]}' @@ -1647,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:07:58 GMT + - Fri, 19 Mar 2021 11:12:24 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 b5afd12835d..0e98ee1324e 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 @@ -13,24 +13,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A46%3A01.1098531Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T12%3A59%3A31.1648597Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/6a057e22-e056-41b3-81cc-7c014161ce37?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ea1bfec-ca3f-4521-b998-04f10ca6506f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:46:02 GMT + - Tue, 09 Mar 2021 12:59:31 GMT etag: - - W/"datetime'2021-03-02T08%3A46%3A01.1098531Z'" + - W/"datetime'2021-03-09T12%3A59%3A31.1648597Z'" expires: - '-1' pragma: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,24 +71,23 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a057e22-e056-41b3-81cc-7c014161ce37?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ea1bfec-ca3f-4521-b998-04f10ca6506f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a057e22-e056-41b3-81cc-7c014161ce37","name":"6a057e22-e056-41b3-81cc-7c014161ce37","status":"Succeeded","startTime":"2021-03-02T08:46:01.0353191Z","endTime":"2021-03-02T08:46:01.2153265Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ea1bfec-ca3f-4521-b998-04f10ca6506f","name":"1ea1bfec-ca3f-4521-b998-04f10ca6506f","status":"Succeeded","startTime":"2021-03-09T12:59:31.107065Z","endTime":"2021-03-09T12:59:31.2920107Z","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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:46:34 GMT + - Tue, 09 Mar 2021 13:00:02 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A46%3A01.2039188Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T12%3A59%3A31.2809414Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:46:35 GMT + - Tue, 09 Mar 2021 13:00:02 GMT etag: - - W/"datetime'2021-03-02T08%3A46%3A01.2039188Z'" + - W/"datetime'2021-03-09T12%3A59%3A31.2809414Z'" 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 374dea82506..18dac8875e8 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 @@ -13,24 +13,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A44%3A45.1309053Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-11T11%3A27%3A20.0685726Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/90d9b7d8-5ebd-42f6-b85e-065b3f1debfa?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/497d8537-3969-4025-a2a6-ea7285a63f7f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:44:46 GMT + - Thu, 11 Mar 2021 11:27:21 GMT etag: - - W/"datetime'2021-03-02T08%3A44%3A45.1309053Z'" + - W/"datetime'2021-03-11T11%3A27%3A20.0685726Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/90d9b7d8-5ebd-42f6-b85e-065b3f1debfa?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/497d8537-3969-4025-a2a6-ea7285a63f7f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/90d9b7d8-5ebd-42f6-b85e-065b3f1debfa","name":"90d9b7d8-5ebd-42f6-b85e-065b3f1debfa","status":"Succeeded","startTime":"2021-03-02T08:44:45.0772428Z","endTime":"2021-03-02T08:44:45.2503509Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/497d8537-3969-4025-a2a6-ea7285a63f7f","name":"497d8537-3969-4025-a2a6-ea7285a63f7f","status":"Succeeded","startTime":"2021-03-11T11:27:19.9786285Z","endTime":"2021-03-11T11:27:20.1805589Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:45:18 GMT + - Thu, 11 Mar 2021 11:27:51 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A44%3A45.2469856Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-11T11%3A27%3A20.1496304Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:45:19 GMT + - Thu, 11 Mar 2021 11:27:51 GMT etag: - - W/"datetime'2021-03-02T08%3A44%3A45.2469856Z'" + - W/"datetime'2021-03-11T11%3A27%3A20.1496304Z'" expires: - '-1' pragma: @@ -168,4 +163,61 @@ interactions: status: code: 200 message: OK +- request: + body: '{"location": "westus2", "properties": {"size": 3298534883328, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --account-name --pool-name -l --service-level --size + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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=2020-12-01 + response: + body: + string: '{"error":{"code":"InvalidValueReceived","message":"An invalid value + ''3298534883328'' was received for Pool.Size. Must be 4 tebibytes in bytes + or higher"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '153' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 11 Mar 2021 11:28:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml index 29fc76c1128..f2e947353b5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_from_snapshot.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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=2020-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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"f27b6cb5-129e-421e-b4a2-4eda393df18d\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"206e7f8f-cd0c-40b2-870a-95c266b69e49\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2c00512b-e4c8-42e9-9071-52508549a329\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"90706323-e3b6-49e0-bb13-6bacede525fb\"\ ,\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0af2239-7d59-4bb6-8bcf-55db15c09fe7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f02e0ce6-76fe-4095-b84b-2087a511f2c0?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:05:51 GMT + - Fri, 19 Mar 2021 10:04:28 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d8da021-d080-483a-909a-dafd9c6b9377 + - 06dfbbf3-b0d0-427a-b8b4-ad7737358374 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0af2239-7d59-4bb6-8bcf-55db15c09fe7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f02e0ce6-76fe-4095-b84b-2087a511f2c0?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:05:55 GMT + - Fri, 19 Mar 2021 10:04:31 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab80f0f1-6a16-4e10-805d-f65dd5c617fe + - ebcd51a1-575f-49dd-a74e-0766f3be299a status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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=2020-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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"280b8cde-c82b-403a-a043-d52b453fcac3\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"c33e23fb-ea6b-4151-8f5f-557b2c433963\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2c00512b-e4c8-42e9-9071-52508549a329\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90706323-e3b6-49e0-bb13-6bacede525fb\"\ ,\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:05:55 GMT + - Fri, 19 Mar 2021 10:04:31 GMT etag: - - W/"280b8cde-c82b-403a-a043-d52b453fcac3" + - W/"c33e23fb-ea6b-4151-8f5f-557b2c433963" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c237144-5e06-4d81-a73e-811d25d5a1bf + - 46b193f2-c389-4097-ad6f-f87c6f66906d status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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=2020-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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"280b8cde-c82b-403a-a043-d52b453fcac3\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"c33e23fb-ea6b-4151-8f5f-557b2c433963\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2c00512b-e4c8-42e9-9071-52508549a329\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90706323-e3b6-49e0-bb13-6bacede525fb\"\ ,\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:05:57 GMT + - Fri, 19 Mar 2021 10:04:32 GMT etag: - - W/"280b8cde-c82b-403a-a043-d52b453fcac3" + - W/"c33e23fb-ea6b-4151-8f5f-557b2c433963" expires: - '-1' pragma: @@ -226,12 +226,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b96ef1bc-f06c-4f3d-abff-8de005dd0d1a + - 5202bfef-1cee-4973-b078-08fad3261ab5 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", + body: '{"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": [{"name": "cli-subnet-lefr-02", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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=2020-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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"8ca20729-2f7f-4a3a-afcf-a1ad17ab9b4f\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"abe6926c-90e6-4672-8acd-231282e6b18e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2c00512b-e4c8-42e9-9071-52508549a329\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"90706323-e3b6-49e0-bb13-6bacede525fb\"\ ,\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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"8ca20729-2f7f-4a3a-afcf-a1ad17ab9b4f\\\"\"\ + ,\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/\\\"abe6926c-90e6-4672-8acd-231282e6b18e\\\"\"\ ,\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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"8ca20729-2f7f-4a3a-afcf-a1ad17ab9b4f\\\ + 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/\\\"abe6926c-90e6-4672-8acd-231282e6b18e\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bddca385-33d3-4bc5-8c37-cdd89243bfe7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08fcd454-fc19-40d2-9daf-24bd26b95f5b?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:05:58 GMT + - Fri, 19 Mar 2021 10:04:33 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9384a1c2-3fd3-401e-8f8b-37ae164b767d + - de320a41-c254-42c2-8e1c-78a7c5e2620e x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bddca385-33d3-4bc5-8c37-cdd89243bfe7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/08fcd454-fc19-40d2-9daf-24bd26b95f5b?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:06:01 GMT + - Fri, 19 Mar 2021 10:04:37 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d3c3377-d188-4954-aa2e-f7eec8a9aab9 + - d82b87f2-8b81-415c-b8a8-b6fef3e1948e status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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=2020-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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"2c2a27c2-4ecd-444c-b0f6-ebca3777a3ca\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-lefr-02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ + ,\r\n \"etag\": \"W/\\\"bd5cae94-d1a5-47db-94f9-71716582b646\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2c00512b-e4c8-42e9-9071-52508549a329\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"90706323-e3b6-49e0-bb13-6bacede525fb\"\ ,\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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"2c2a27c2-4ecd-444c-b0f6-ebca3777a3ca\\\"\"\ + ,\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/\\\"bd5cae94-d1a5-47db-94f9-71716582b646\\\"\"\ ,\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_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"2c2a27c2-4ecd-444c-b0f6-ebca3777a3ca\\\ + 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/\\\"bd5cae94-d1a5-47db-94f9-71716582b646\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:06:02 GMT + - Fri, 19 Mar 2021 10:04:37 GMT etag: - - W/"2c2a27c2-4ecd-444c-b0f6-ebca3777a3ca" + - W/"bd5cae94-d1a5-47db-94f9-71716582b646" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a69295c-96c4-48dd-a1a6-523fb7ffa7fa + - c4c849d2-a7ee-4d9f-af10-7587f6ea4617 status: code: 200 message: OK @@ -456,34 +456,31 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A06%3A18.9590427Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A04%3A45.651677Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/958af79e-e04a-472c-94ef-ec29ac779a03?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ef3d8ac-0be3-46c9-97ed-ab5f7a2f9d91?api-version=2020-12-01 cache-control: - no-cache content-length: - - '434' + - '433' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:06:19 GMT + - Fri, 19 Mar 2021 10:04:46 GMT etag: - - W/"datetime'2021-03-02T09%3A06%3A18.9590427Z'" + - W/"datetime'2021-03-19T10%3A04%3A45.651677Z'" expires: - '-1' pragma: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/958af79e-e04a-472c-94ef-ec29ac779a03?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ef3d8ac-0be3-46c9-97ed-ab5f7a2f9d91?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/958af79e-e04a-472c-94ef-ec29ac779a03","name":"958af79e-e04a-472c-94ef-ec29ac779a03","status":"Succeeded","startTime":"2021-03-02T09:06:18.8990859Z","endTime":"2021-03-02T09:06:19.0399378Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ef3d8ac-0be3-46c9-97ed-ab5f7a2f9d91","name":"4ef3d8ac-0be3-46c9-97ed-ab5f7a2f9d91","status":"Succeeded","startTime":"2021-03-19T10:04:45.6115579Z","endTime":"2021-03-19T10:04:45.7215527Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:06:51 GMT + - Fri, 19 Mar 2021 10:05:17 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A06%3A19.0260904Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T10%3A04%3A45.7127216Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:06:52 GMT + - Fri, 19 Mar 2021 10:05:17 GMT etag: - - W/"datetime'2021-03-02T09%3A06%3A19.0260904Z'" + - W/"datetime'2021-03-19T10%3A04%3A45.7127216Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T09%3A07%3A00.0585534Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A05%3A26.2398368Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/53f26554-e849-4b5d-94ce-f51e89214c6e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be07a5d4-7482-48f3-b8b3-337ac4f9eac3?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:07:01 GMT + - Fri, 19 Mar 2021 10:05:27 GMT etag: - - W/"datetime'2021-03-02T09%3A07%3A00.0585534Z'" + - W/"datetime'2021-03-19T10%3A05%3A26.2398368Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53f26554-e849-4b5d-94ce-f51e89214c6e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be07a5d4-7482-48f3-b8b3-337ac4f9eac3?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53f26554-e849-4b5d-94ce-f51e89214c6e","name":"53f26554-e849-4b5d-94ce-f51e89214c6e","status":"Succeeded","startTime":"2021-03-02T09:07:00.0103958Z","endTime":"2021-03-02T09:07:13.1506808Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be07a5d4-7482-48f3-b8b3-337ac4f9eac3","name":"be07a5d4-7482-48f3-b8b3-337ac4f9eac3","status":"Succeeded","startTime":"2021-03-19T10:05:26.1961219Z","endTime":"2021-03-19T10:05:26.4411103Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:07:33 GMT + - Fri, 19 Mar 2021 10:05:57 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T09%3A07%3A13.1399464Z''\"","location":"westus2","properties":{"poolId":"34d85a53-8c83-541b-bc0e-4eda747741d1","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A05%3A26.4319748Z''\"","location":"westus2","properties":{"poolId":"0630ca96-f28a-25dc-e5a1-9496c1d28f2a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:07:33 GMT + - Fri, 19 Mar 2021 10:05:58 GMT etag: - - W/"datetime'2021-03-02T09%3A07%3A13.1399464Z'" + - W/"datetime'2021-03-19T10%3A05%3A26.4319748Z'" expires: - '-1' pragma: @@ -783,7 +773,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: Accept: - application/json @@ -796,25 +786,22 @@ interactions: Content-Length: - '389' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A07%3A41.1950903Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_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''2021-03-19T10%3A06%3A07.1492205Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:07:42 GMT + - Fri, 19 Mar 2021 10:06:08 GMT etag: - - W/"datetime'2021-03-02T09%3A07%3A41.1950903Z'" + - W/"datetime'2021-03-19T10%3A06%3A07.1492205Z'" expires: - '-1' pragma: @@ -838,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -848,7 +835,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Creating","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -876,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:08:14 GMT + - Fri, 19 Mar 2021 10:06:38 GMT expires: - '-1' pragma: @@ -902,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Creating","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:08:46 GMT + - Fri, 19 Mar 2021 10:07:08 GMT expires: - '-1' pragma: @@ -956,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Creating","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:09:16 GMT + - Fri, 19 Mar 2021 10:07:39 GMT expires: - '-1' pragma: @@ -1010,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Creating","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:09:47 GMT + - Fri, 19 Mar 2021 10:08:09 GMT expires: - '-1' pragma: @@ -1064,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Creating","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:10:18 GMT + - Fri, 19 Mar 2021 10:08:40 GMT expires: - '-1' pragma: @@ -1118,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,24 +1111,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24348e5a-0f59-4bf6-8f6e-b929a3459422","name":"24348e5a-0f59-4bf6-8f6e-b929a3459422","status":"Succeeded","startTime":"2021-03-19T10:06:07.0921792Z","endTime":"2021-03-19T10:08:59.2943296Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '648' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:10:49 GMT + - Fri, 19 Mar 2021 10:09:10 GMT expires: - '-1' pragma: @@ -1172,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,24 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/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''2021-03-19T10%3A08%3A59.2859987Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"19f8e5d6-f488-a99e-0880-15e179c4e3aa","fileSystemId":"19f8e5d6-f488-a99e-0880-15e179c4e3aa","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"19f8e5d6-f488-a99e-0880-15e179c4e3aa","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_5764ef43","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '1829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:11:20 GMT + - Fri, 19 Mar 2021 10:09:10 GMT + etag: + - W/"datetime'2021-03-19T10%3A08%3A59.2859987Z'" expires: - '-1' pragma: @@ -1223,94 +1205,46 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2"}' 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.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:11: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: + Content-Length: + - '23' + Content-Type: - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - 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 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/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","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/10b8eb7e-aeab-4894-96ec-933d71416d43?api-version=2020-12-01 cache-control: - no-cache content-length: - - '637' + - '608' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:12:22 GMT + - Fri, 19 Mar 2021 10:09:13 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10b8eb7e-aeab-4894-96ec-933d71416d43?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1319,50 +1253,46 @@ 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: 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 + - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10b8eb7e-aeab-4894-96ec-933d71416d43?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10b8eb7e-aeab-4894-96ec-933d71416d43","name":"10b8eb7e-aeab-4894-96ec-933d71416d43","status":"Succeeded","startTime":"2021-03-19T10:09:13.6727586Z","endTime":"2021-03-19T10:09:16.3104401Z","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: - - '637' + - '683' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:12:53 GMT + - Fri, 19 Mar 2021 10:09:44 GMT expires: - '-1' pragma: @@ -1388,35 +1318,33 @@ interactions: body: null 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 + - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/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":"13657511-6cec-3504-91c2-3822fad98dfc","name":"cli-sn-000006","created":"2021-03-19T10:09:14Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '694' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:13:24 GMT + - Fri, 19 Mar 2021 10:09:44 GMT expires: - '-1' pragma: @@ -1446,31 +1374,29 @@ 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.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_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":"13657511-6cec-3504-91c2-3822fad98dfc","fileSystemId":"19f8e5d6-f488-a99e-0880-15e179c4e3aa","name":"cli-sn-000006","created":"2021-03-19T10:09:14Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '760' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:13:55 GMT + - Fri, 19 Mar 2021 10:09:46 GMT expires: - '-1' pragma: @@ -1500,31 +1426,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume create + - netappfiles snapshot show Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + - -g -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-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=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/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":"13657511-6cec-3504-91c2-3822fad98dfc","name":"cli-sn-000006","created":"2021-03-19T10:09:14Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '637' + - '694' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:14:25 GMT + - Fri, 19 Mar 2021 10:09:51 GMT expires: - '-1' pragma: @@ -1547,7 +1471,9 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "properties": {"creationToken": "cli-sn-2000007", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "13657511-6cec-3504-91c2-3822fad98dfc", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: Accept: - application/json @@ -1557,28 +1483,35 @@ interactions: - netappfiles volume create Connection: - keep-alive + Content-Length: + - '443' + Content-Type: + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + 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-sn-2000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Creating","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A09%3A57.2246209Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"snapshotId":"13657511-6cec-3504-91c2-3822fad98dfc","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/7c5c8e8e-e421-41cb-9eb4-4becd4b58910?api-version=2020-12-01 cache-control: - no-cache content-length: - - '637' + - '956' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:14:57 GMT + - Fri, 19 Mar 2021 10:09:57 GMT + etag: + - W/"datetime'2021-03-19T10%3A09%3A57.2246209Z'" expires: - '-1' pragma: @@ -1589,22 +1522,20 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1613,15 +1544,14 @@ interactions: - keep-alive ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet + --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c5c8e8e-e421-41cb-9eb4-4becd4b58910?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d4d3acd-fe6d-4033-b575-f46faef2a604","name":"9d4d3acd-fe6d-4033-b575-f46faef2a604","status":"Succeeded","startTime":"2021-03-02T09:07:41.1365933Z","endTime":"2021-03-02T09:15:00.240324Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c5c8e8e-e421-41cb-9eb4-4becd4b58910","name":"7c5c8e8e-e421-41cb-9eb4-4becd4b58910","status":"Succeeded","startTime":"2021-03-19T10:09:57.183771Z","endTime":"2021-03-19T10:10:06.7904263Z","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-sn-2000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1632,7 +1562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:15:27 GMT + - Fri, 19 Mar 2021 10:10:28 GMT expires: - '-1' pragma: @@ -1658,564 +1588,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A15%3A00.2311424Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"04ce7a74-d622-9318-1c41-b58b67ce50bf","fileSystemId":"04ce7a74-d622-9318-1c41-b58b67ce50bf","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"04ce7a74-d622-9318-1c41-b58b67ce50bf","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_fd75c42e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1809' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:15:28 GMT - etag: - - W/"datetime'2021-03-02T09%3A15%3A00.2311424Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot create - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -s -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","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/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '608' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:15:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 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 - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","name":"ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","status":"Creating","startTime":"2021-03-02T09:15:31.5829541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '672' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:16: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 snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","name":"ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","status":"Creating","startTime":"2021-03-02T09:15:31.5829541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '672' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:16: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 snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","name":"ca6dd99a-cbab-4db5-9a4c-33dfdf143d28","status":"Succeeded","startTime":"2021-03-02T09:15:31.5829541Z","endTime":"2021-03-02T09:16:43.3421556Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '683' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:17: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 snapshot create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"eb754a30-bce0-9fc3-7535-e74f616dcc39","name":"cli-sn-000006","created":"2021-03-02T09:16:36Z"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '694' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:17: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 snapshot list - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2020-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"eb754a30-bce0-9fc3-7535-e74f616dcc39","fileSystemId":"04ce7a74-d622-9318-1c41-b58b67ce50bf","name":"cli-sn-000006","created":"2021-03-02T09:16:36Z"}}]}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '760' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:17: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 snapshot show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -s - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"eb754a30-bce0-9fc3-7535-e74f616dcc39","name":"cli-sn-000006","created":"2021-03-02T09:16:36Z"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '694' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:17:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "properties": {"creationToken": "cli-sn-2000007", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "eb754a30-bce0-9fc3-7535-e74f616dcc39", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - Content-Length: - - '443' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A17%3A21.329433Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"snapshotId":"eb754a30-bce0-9fc3-7535-e74f616dcc39","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d21a4e4-f0ae-4947-846a-e4cbe5963136?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '955' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:17:22 GMT - etag: - - W/"datetime'2021-03-02T09%3A17%3A21.329433Z'" - expires: - - '-1' - pragma: - - 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 volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --snapshot-id - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d21a4e4-f0ae-4947-846a-e4cbe5963136?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d21a4e4-f0ae-4947-846a-e4cbe5963136","name":"0d21a4e4-f0ae-4947-846a-e4cbe5963136","status":"Succeeded","startTime":"2021-03-02T09:17:21.2452696Z","endTime":"2021-03-02T09:17:37.016225Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '647' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 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: @@ -2226,26 +1599,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007?api-version=2020-11-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-sn-2000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A17%3A37.0096909Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"ced43abc-ab47-c44a-72ca-2e5cd85b87fc","fileSystemId":"ced43abc-ab47-c44a-72ca-2e5cd85b87fc","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"ced43abc-ab47-c44a-72ca-2e5cd85b87fc","name":"cli-sn-2000007","serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_fd75c42e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snap_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + 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-sn-2000007","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A10%3A06.7834901Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"8dfc2574-afbd-108d-f821-1107cf62f6e2","fileSystemId":"8dfc2574-afbd-108d-f821-1107cf62f6e2","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"8dfc2574-afbd-108d-f821-1107cf62f6e2","name":"cli-sn-2000007","serviceLevel":"Premium","creationToken":"cli-sn-2000007","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_5764ef43","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1809' + - '1829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:17:54 GMT + - Fri, 19 Mar 2021 10:10:29 GMT etag: - - W/"datetime'2021-03-02T09%3A17%3A37.0096909Z'" + - W/"datetime'2021-03-19T10%3A10%3A06.7834901Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_non_default_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_non_default_export_policy.yaml index 4a425933264..eb0e261e6b7 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_non_default_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_non_default_export_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,39 +12,39 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '131' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"6426c8ab-ed32-42fd-ae43-d6164de3f44e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9117ed2a-01e3-4ec2-b1f9-15f43ba7d26b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\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 }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"4d5a2c5b-b0c1-4963-9c18-e8a7689beec0\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"531c868c-73fb-459e-9bb0-e63961092bbe\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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 }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/69f7e752-c631-4e9d-b4ca-d64fb9b087ed?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3100f9be-a0f1-4524-95cd-ac1e00956163?api-version=2020-11-01 cache-control: - no-cache content-length: - - '770' + - '778' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:18 GMT + - Fri, 19 Mar 2021 13:56:10 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51ceb503-d9bc-4ae9-9fbe-653910ff43b5 + - f5fdb792-9085-4d6f-8743-10cfee53d212 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/69f7e752-c631-4e9d-b4ca-d64fb9b087ed?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3100f9be-a0f1-4524-95cd-ac1e00956163?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:21 GMT + - Fri, 19 Mar 2021 13:56:14 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 054bf179-93ae-494a-9f3e-e2e5e1f89047 + - 4adf6b77-97ac-4a52-b484-626e70169aed status: code: 200 message: OK @@ -126,31 +126,31 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"6f617c9f-94ba-47bf-8a71-7c66bf6b36ee\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9117ed2a-01e3-4ec2-b1f9-15f43ba7d26b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\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 }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"ffee42e5-220e-4396-a5b5-070535b0caf2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"531c868c-73fb-459e-9bb0-e63961092bbe\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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 }\r\n}" headers: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:22 GMT + - Fri, 19 Mar 2021 13:56:14 GMT etag: - - W/"6f617c9f-94ba-47bf-8a71-7c66bf6b36ee" + - W/"ffee42e5-220e-4396-a5b5-070535b0caf2" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 019819fc-8cf5-485b-9a0b-06a40cb50fc0 + - 978ba5e4-6df5-4aca-a8af-603bb665e673 status: code: 200 message: OK @@ -185,31 +185,31 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"6f617c9f-94ba-47bf-8a71-7c66bf6b36ee\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9117ed2a-01e3-4ec2-b1f9-15f43ba7d26b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\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 }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"ffee42e5-220e-4396-a5b5-070535b0caf2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"531c868c-73fb-459e-9bb0-e63961092bbe\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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 }\r\n}" headers: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:22 GMT + - Fri, 19 Mar 2021 13:56:14 GMT etag: - - W/"6f617c9f-94ba-47bf-8a71-7c66bf6b36ee" + - W/"ffee42e5-220e-4396-a5b5-070535b0caf2" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fb9f1d0-1a2c-4930-81ad-fd4c0e18d747 + - 6db2543b-b16b-49fa-b49b-9f534dd986f5 status: code: 200 message: OK @@ -247,53 +247,54 @@ interactions: Connection: - keep-alive Content-Length: - - '603' + - '611' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"fcebb7c8-a56c-4e62-baf6-282ce51df02b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9117ed2a-01e3-4ec2-b1f9-15f43ba7d26b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\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/\\\"fcebb7c8-a56c-4e62-baf6-282ce51df02b\\\"\",\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/\\\"fcebb7c8-a56c-4e62-baf6-282ce51df02b\\\"\",\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 }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"4b5efe03-2a7f-414f-a001-0ab18d6f3b7e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"531c868c-73fb-459e-9bb0-e63961092bbe\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"4b5efe03-2a7f-414f-a001-0ab18d6f3b7e\\\"\"\ + ,\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/\\\"4b5efe03-2a7f-414f-a001-0ab18d6f3b7e\\\ + \"\",\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 }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0de5d5a5-3f7e-43e4-83c6-589987d0f205?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/45d88b5f-70bd-4736-ac30-c9884c56b708?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2356' + - '2364' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:23 GMT + - Fri, 19 Mar 2021 13:56:16 GMT expires: - '-1' pragma: @@ -310,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45dc0042-e3ab-4801-acab-21fb9ed21f83 + - b882abca-44d9-4f68-8e9a-4de8c6aecbd8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -330,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0de5d5a5-3f7e-43e4-83c6-589987d0f205?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/45d88b5f-70bd-4736-ac30-c9884c56b708?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -344,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:27 GMT + - Fri, 19 Mar 2021 13:56:19 GMT expires: - '-1' pragma: @@ -361,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bfe29374-4cd9-41e1-bc9b-12e8af2e2e7d + - 8aad0b7f-f85b-43a8-9bca-9d11771c3ae3 status: code: 200 message: OK @@ -379,47 +380,48 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"38d738ec-cb97-4834-aa87-4ea4697525a5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9117ed2a-01e3-4ec2-b1f9-15f43ba7d26b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\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/\\\"38d738ec-cb97-4834-aa87-4ea4697525a5\\\"\",\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/\\\"38d738ec-cb97-4834-aa87-4ea4697525a5\\\"\",\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 }\r\n}" + string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ + ,\r\n \"etag\": \"W/\\\"d4726888-81ed-4e9b-8dd0-78ed186dcad3\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"531c868c-73fb-459e-9bb0-e63961092bbe\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"d4726888-81ed-4e9b-8dd0-78ed186dcad3\\\"\"\ + ,\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/\\\"d4726888-81ed-4e9b-8dd0-78ed186dcad3\\\ + \"\",\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 }\r\n}" headers: cache-control: - no-cache content-length: - - '2358' + - '2366' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:27 GMT + - Fri, 19 Mar 2021 13:56:19 GMT etag: - - W/"38d738ec-cb97-4834-aa87-4ea4697525a5" + - W/"d4726888-81ed-4e9b-8dd0-78ed186dcad3" expires: - '-1' pragma: @@ -436,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b98e8bc8-132a-42f2-9748-9d5aafa51fdd + - 893c25c0-aac4-46ac-a0f5-2d2299078267 status: code: 200 message: OK @@ -452,36 +454,33 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '64' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A13%3A33.7672089Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T13%3A56%3A26.9660817Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1d9f1e1b-c6b0-4281-9054-2dcc6c0321fa?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/838c1c1c-2d2b-4c99-85bf-6493cccdf240?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '441' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:13:35 GMT + - Fri, 19 Mar 2021 13:56:27 GMT etag: - - W/"datetime'2021-03-15T02%3A13%3A33.7672089Z'" + - W/"datetime'2021-03-19T13%3A56%3A26.9660817Z'" expires: - '-1' pragma: @@ -505,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -515,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1d9f1e1b-c6b0-4281-9054-2dcc6c0321fa?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/838c1c1c-2d2b-4c99-85bf-6493cccdf240?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1d9f1e1b-c6b0-4281-9054-2dcc6c0321fa","name":"1d9f1e1b-c6b0-4281-9054-2dcc6c0321fa","status":"Succeeded","startTime":"2021-03-15T02:13:33.6933554Z","endTime":"2021-03-15T02:13:33.8433516Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/838c1c1c-2d2b-4c99-85bf-6493cccdf240","name":"838c1c1c-2d2b-4c99-85bf-6493cccdf240","status":"Succeeded","startTime":"2021-03-19T13:56:26.9270655Z","endTime":"2021-03-19T13:56:27.0450237Z","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' + - '583' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:07 GMT + - Fri, 19 Mar 2021 13:56:57 GMT expires: - '-1' pragma: @@ -558,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -568,26 +566,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A13%3A33.8382584Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T13%3A56%3A27.0371358Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '434' + - '442' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:07 GMT + - Fri, 19 Mar 2021 13:56:58 GMT etag: - - W/"datetime'2021-03-15T02%3A13%3A33.8382584Z'" + - W/"datetime'2021-03-19T13%3A56%3A27.0371358Z'" expires: - '-1' pragma: @@ -622,36 +619,33 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '96' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A14%3A14.8190062Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A57%3A05.3050551Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2434f0eb-faf6-4bb1-8770-0055224cfc94?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9e8ba3e9-1761-42d7-bd4c-730d92cc8332?api-version=2020-12-01 cache-control: - no-cache content-length: - - '598' + - '606' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:15 GMT + - Fri, 19 Mar 2021 13:57:06 GMT etag: - - W/"datetime'2021-03-15T02%3A14%3A14.8190062Z'" + - W/"datetime'2021-03-19T13%3A57%3A05.3050551Z'" expires: - '-1' pragma: @@ -675,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -685,24 +679,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2434f0eb-faf6-4bb1-8770-0055224cfc94?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9e8ba3e9-1761-42d7-bd4c-730d92cc8332?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/2434f0eb-faf6-4bb1-8770-0055224cfc94","name":"2434f0eb-faf6-4bb1-8770-0055224cfc94","status":"Succeeded","startTime":"2021-03-15T02:14:14.7824643Z","endTime":"2021-03-15T02:14:20.9549377Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9e8ba3e9-1761-42d7-bd4c-730d92cc8332","name":"9e8ba3e9-1761-42d7-bd4c-730d92cc8332","status":"Succeeded","startTime":"2021-03-19T13:57:05.2279318Z","endTime":"2021-03-19T13:57:05.4202586Z","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' + - '622' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:47 GMT + - Fri, 19 Mar 2021 13:57:36 GMT expires: - '-1' pragma: @@ -728,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -738,26 +731,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A14%3A20.9493074Z''\"","location":"eastus","properties":{"poolId":"b404925a-b92d-94be-b36c-9316faf1cdd0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A57%3A05.4111356Z''\"","location":"eastus","properties":{"poolId":"d30196c9-85d5-27ff-adc4-73846613e614","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '694' + - '702' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:49 GMT + - Fri, 19 Mar 2021 13:57:36 GMT etag: - - W/"datetime'2021-03-15T02%3A14%3A20.9493074Z'" + - W/"datetime'2021-03-19T13%3A57%3A05.4111356Z'" expires: - '-1' pragma: @@ -780,11 +772,13 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "tags": {"Tag2": "Value1"}, "properties": {"creationToken": - "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 2, "unixReadOnly": false, "unixReadWrite": - true, "cifs": false, "nfsv3": false, "nfsv41": true, "allowedClients": "1.2.3.0/24"}]}, - "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: '{"location": "eastus", "tags": {"Tag2": "Value1"}, "properties": + {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": + 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 2, "unixReadOnly": false, + "unixReadWrite": true, "kerberos5iReadOnly": false, "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, "kerberos5pReadWrite": false, "cifs": false, "nfsv3": + false, "nfsv41": true, "allowedClients": "1.2.3.0/24"}]}, "protocolTypes": ["NFSv4.1"], + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: Accept: - application/json @@ -795,38 +789,35 @@ interactions: Connection: - keep-alive Content-Length: - - '624' + - '750' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A14%3A56.1490033Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A57%3A43.11663Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false}]},"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/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1281' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:14:58 GMT + - Fri, 19 Mar 2021 13:57:44 GMT etag: - - W/"datetime'2021-03-15T02%3A14%3A56.1490033Z'" + - W/"datetime'2021-03-19T13%3A57%3A43.11663Z'" expires: - '-1' pragma: @@ -850,62 +841,7 @@ interactions: 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 - --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs - --allowed-clients - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '634' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 15 Mar 2021 02:15: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: @@ -917,24 +853,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:15:59 GMT + - Fri, 19 Mar 2021 13:58:14 GMT expires: - '-1' pragma: @@ -960,7 +895,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -972,24 +907,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:16:30 GMT + - Fri, 19 Mar 2021 13:58:45 GMT expires: - '-1' pragma: @@ -1015,7 +949,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1027,24 +961,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:17:00 GMT + - Fri, 19 Mar 2021 13:59:15 GMT expires: - '-1' pragma: @@ -1070,7 +1003,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1082,24 +1015,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:17:30 GMT + - Fri, 19 Mar 2021 13:59:46 GMT expires: - '-1' pragma: @@ -1125,7 +1057,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1137,24 +1069,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:18:01 GMT + - Fri, 19 Mar 2021 14:00:16 GMT expires: - '-1' pragma: @@ -1180,7 +1111,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1192,24 +1123,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Creating","startTime":"2021-03-15T02:14:56.10326Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Creating","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:18:31 GMT + - Fri, 19 Mar 2021 14:00:46 GMT expires: - '-1' pragma: @@ -1235,7 +1165,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1247,24 +1177,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fcb5717a-3127-4fd6-a664-36c3fb49dab9","name":"fcb5717a-3127-4fd6-a664-36c3fb49dab9","status":"Succeeded","startTime":"2021-03-15T02:14:56.10326Z","endTime":"2021-03-15T02:18:59.8933666Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c28f3f20-22af-4f5f-a059-e39dcb0aae88","name":"c28f3f20-22af-4f5f-a059-e39dcb0aae88","status":"Succeeded","startTime":"2021-03-19T13:57:43.0621813Z","endTime":"2021-03-19T14:01:11.788062Z","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: - - '645' + - '654' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:19:01 GMT + - Fri, 19 Mar 2021 14:01:16 GMT expires: - '-1' pragma: @@ -1290,7 +1219,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1302,26 +1231,25 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-15T02%3A18%3A59.8649706Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"f8c030cf-fb8e-9895-3579-5e48ff7ac07a","fileSystemId":"f8c030cf-fb8e-9895-3579-5e48ff7ac07a","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"f8c030cf-fb8e-9895-3579-5e48ff7ac07a","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_e81dc32e050211ea89e7d2475fbea55b_1456094d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T14%3A01%3A11.7823159Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"34c9a651-9589-90ed-cd06-216bba172da6","fileSystemId":"34c9a651-9589-90ed-cd06-216bba172da6","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"34c9a651-9589-90ed-cd06-216bba172da6","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_472a7167","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1842' + - '1870' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Mar 2021 02:19:02 GMT + - Fri, 19 Mar 2021 14:01:16 GMT etag: - - W/"datetime'2021-03-15T02%3A18%3A59.8649706Z'" + - W/"datetime'2021-03-19T14%3A01%3A11.7823159Z'" 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 1ffeec8dd49..cad875c7266 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml @@ -17,8 +17,8 @@ interactions: ParameterSetName: - -n --subscription -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:24 GMT + - Fri, 19 Mar 2021 11:12:57 GMT expires: - '-1' pragma: @@ -67,16 +67,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"ae693d52-707b-4c29-9fa6-ff4554c413e2\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"49e9e96a-0b1b-47e0-97d2-4cb475ff2aec\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f045d9d6-cb40-4f64-a0b4-4704dcacc7b7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"fb67f1b0-0da1-40cc-ac63-c7dda4c23137\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -85,7 +85,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bacc9541-1d35-47d8-9971-202666fd25c1?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e91580d-7298-47e5-affa-12783d4dc486?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -93,7 +93,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:29 GMT + - Fri, 19 Mar 2021 11:13:03 GMT expires: - '-1' pragma: @@ -106,9 +106,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 346e2944-9973-44a9-a0f4-4eae100a458f + - c5fae3d9-d588-4f9f-8bb5-880b59f9de7d x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -126,9 +126,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bacc9541-1d35-47d8-9971-202666fd25c1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e91580d-7298-47e5-affa-12783d4dc486?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:32 GMT + - Fri, 19 Mar 2021 11:13:06 GMT expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75fa4e25-66c0-425e-a304-dc92541066a5 + - d16fea82-3185-4252-bbc3-9a2f403217e5 status: code: 200 message: OK @@ -175,16 +175,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"607b79ac-85a8-4386-84ca-edcf4cb7dd75\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1cef3ae9-5e3f-4389-934b-1f4e3aac836b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f045d9d6-cb40-4f64-a0b4-4704dcacc7b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"fb67f1b0-0da1-40cc-ac63-c7dda4c23137\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\":\ @@ -197,9 +197,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:33 GMT + - Fri, 19 Mar 2021 11:13:06 GMT etag: - - W/"607b79ac-85a8-4386-84ca-edcf4cb7dd75" + - W/"1cef3ae9-5e3f-4389-934b-1f4e3aac836b" expires: - '-1' pragma: @@ -216,7 +216,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c876e2b-e2f4-4733-b146-ec2b3217e4ec + - 4c5e7547-4504-404b-8d20-46104e325cba status: code: 200 message: OK @@ -234,16 +234,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"607b79ac-85a8-4386-84ca-edcf4cb7dd75\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1cef3ae9-5e3f-4389-934b-1f4e3aac836b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f045d9d6-cb40-4f64-a0b4-4704dcacc7b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"fb67f1b0-0da1-40cc-ac63-c7dda4c23137\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -256,9 +256,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:33 GMT + - Fri, 19 Mar 2021 11:13:07 GMT etag: - - W/"607b79ac-85a8-4386-84ca-edcf4cb7dd75" + - W/"1cef3ae9-5e3f-4389-934b-1f4e3aac836b" expires: - '-1' pragma: @@ -275,7 +275,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 430758cd-37ba-4ff7-be09-03efcb0e6c98 + - 89a14597-e7cd-4e1a-95d8-291c4b64f80b status: code: 200 message: OK @@ -302,26 +302,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"45a27145-87a0-4c53-997e-4af4cd117ea8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"168ca112-0c81-49c1-b6b3-e5c47be818c5\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f045d9d6-cb40-4f64-a0b4-4704dcacc7b7\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"fb67f1b0-0da1-40cc-ac63-c7dda4c23137\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"45a27145-87a0-4c53-997e-4af4cd117ea8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"168ca112-0c81-49c1-b6b3-e5c47be818c5\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"45a27145-87a0-4c53-997e-4af4cd117ea8\\\ + ,\r\n \"etag\": \"W/\\\"168ca112-0c81-49c1-b6b3-e5c47be818c5\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -335,7 +335,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2b2e1679-9678-41c1-8987-e1b7938fe8e5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f575b78-6418-4c42-8843-9d31882f6ecd?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -343,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:34 GMT + - Fri, 19 Mar 2021 11:13:08 GMT expires: - '-1' pragma: @@ -360,9 +360,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6e6ec7c-5747-4f6d-8e3b-59291ae6b458 + - 1d7a1f61-c53d-4ddb-8b8d-fb99bf948a3b x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -380,9 +380,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2b2e1679-9678-41c1-8987-e1b7938fe8e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1f575b78-6418-4c42-8843-9d31882f6ecd?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -394,7 +394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:37 GMT + - Fri, 19 Mar 2021 11:13:13 GMT expires: - '-1' pragma: @@ -411,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f39c93c-c083-4ed4-8f77-918740244769 + - 3723ef13-2d1f-41ba-903c-b92c9b0dc808 status: code: 200 message: OK @@ -429,26 +429,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\"\ - ,\r\n \"etag\": \"W/\\\"d6938e48-e464-414b-90c4-b60cf9c92ce4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"829fdfb8-bc30-4863-8aa7-541ac396a05f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f045d9d6-cb40-4f64-a0b4-4704dcacc7b7\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"fb67f1b0-0da1-40cc-ac63-c7dda4c23137\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000006\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"d6938e48-e464-414b-90c4-b60cf9c92ce4\\\"\"\ + ,\r\n \"etag\": \"W/\\\"829fdfb8-bc30-4863-8aa7-541ac396a05f\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"d6938e48-e464-414b-90c4-b60cf9c92ce4\\\ + ,\r\n \"etag\": \"W/\\\"829fdfb8-bc30-4863-8aa7-541ac396a05f\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -468,9 +468,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:38 GMT + - Fri, 19 Mar 2021 11:13:13 GMT etag: - - W/"d6938e48-e464-414b-90c4-b60cf9c92ce4" + - W/"829fdfb8-bc30-4863-8aa7-541ac396a05f" expires: - '-1' pragma: @@ -487,7 +487,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fb8d1d4-76e4-44a5-9a27-4da9c23ae723 + - d42cac46-8696-43d9-89e1-6a9acbd36027 status: code: 200 message: OK @@ -505,24 +505,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A08%3A45.0543906Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A13%3A19.7447829Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/507acd03-617c-4a5d-9e2c-2ab73e4ec412?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9789289-0285-4705-9d51-9bddef27367f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -530,9 +527,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:08:46 GMT + - Fri, 19 Mar 2021 11:13:20 GMT etag: - - W/"datetime'2021-03-02T10%3A08%3A45.0543906Z'" + - W/"datetime'2021-03-19T11%3A13%3A19.7447829Z'" expires: - '-1' pragma: @@ -546,7 +543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -556,7 +553,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -566,13 +563,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/507acd03-617c-4a5d-9e2c-2ab73e4ec412?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9789289-0285-4705-9d51-9bddef27367f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/507acd03-617c-4a5d-9e2c-2ab73e4ec412","name":"507acd03-617c-4a5d-9e2c-2ab73e4ec412","status":"Succeeded","startTime":"2021-03-02T10:08:44.9554746Z","endTime":"2021-03-02T10:08:45.1404506Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9789289-0285-4705-9d51-9bddef27367f","name":"c9789289-0285-4705-9d51-9bddef27367f","status":"Succeeded","startTime":"2021-03-19T11:13:19.6934234Z","endTime":"2021-03-19T11:13:19.8434112Z","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 @@ -583,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:09:17 GMT + - Fri, 19 Mar 2021 11:13:50 GMT expires: - '-1' pragma: @@ -609,7 +605,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -619,13 +615,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A08%3A45.1314448Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T11%3A13%3A19.8308441Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -636,9 +631,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:09:18 GMT + - Fri, 19 Mar 2021 11:13:50 GMT etag: - - W/"datetime'2021-03-02T10%3A08%3A45.1314448Z'" + - W/"datetime'2021-03-19T11%3A13%3A19.8308441Z'" expires: - '-1' pragma: @@ -675,24 +670,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A09%3A24.7324695Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A13%3A59.0107559Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d00d9cab-c186-4705-b015-b8f0cec8e7eb?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/27364605-ccb2-4fc3-b5e4-5457df1a30d2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -700,9 +692,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:09:25 GMT + - Fri, 19 Mar 2021 11:14:00 GMT etag: - - W/"datetime'2021-03-02T10%3A09%3A24.7324695Z'" + - W/"datetime'2021-03-19T11%3A13%3A59.0107559Z'" expires: - '-1' pragma: @@ -716,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -726,7 +718,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -736,13 +728,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d00d9cab-c186-4705-b015-b8f0cec8e7eb?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/27364605-ccb2-4fc3-b5e4-5457df1a30d2?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d00d9cab-c186-4705-b015-b8f0cec8e7eb","name":"d00d9cab-c186-4705-b015-b8f0cec8e7eb","status":"Succeeded","startTime":"2021-03-02T10:09:24.6525856Z","endTime":"2021-03-02T10:09:35.2808482Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/27364605-ccb2-4fc3-b5e4-5457df1a30d2","name":"27364605-ccb2-4fc3-b5e4-5457df1a30d2","status":"Succeeded","startTime":"2021-03-19T11:13:58.9357792Z","endTime":"2021-03-19T11:13:59.2526717Z","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 @@ -753,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:09:57 GMT + - Fri, 19 Mar 2021 11:14:30 GMT expires: - '-1' pragma: @@ -779,7 +770,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -789,13 +780,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A09%3A35.2699283Z''\"","location":"eastus","properties":{"poolId":"aae74012-f4ae-c384-fbb0-80b36ba81db3","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A13%3A59.2459245Z''\"","location":"eastus","properties":{"poolId":"e574fdda-0cd7-22d7-fdeb-4a38753371cb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -806,9 +796,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:09:57 GMT + - Fri, 19 Mar 2021 11:14:30 GMT etag: - - W/"datetime'2021-03-02T10%3A09%3A35.2699283Z'" + - W/"datetime'2021-03-19T11%3A13%3A59.2459245Z'" expires: - '-1' pragma: @@ -845,25 +835,22 @@ interactions: Content-Length: - '343' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A10%3A05.4702982Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A14%3A40.3171872Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -871,9 +858,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:10:06 GMT + - Fri, 19 Mar 2021 11:14:41 GMT etag: - - W/"datetime'2021-03-02T10%3A10%3A05.4702982Z'" + - W/"datetime'2021-03-19T11%3A14%3A40.3171872Z'" expires: - '-1' pragma: @@ -887,7 +874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -897,7 +884,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -908,13 +895,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -925,7 +911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:10:38 GMT + - Fri, 19 Mar 2021 11:15:11 GMT expires: - '-1' pragma: @@ -951,7 +937,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -962,13 +948,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -979,7 +964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:11:08 GMT + - Fri, 19 Mar 2021 11:15:41 GMT expires: - '-1' pragma: @@ -1005,7 +990,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1016,13 +1001,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1033,7 +1017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:11:39 GMT + - Fri, 19 Mar 2021 11:16:11 GMT expires: - '-1' pragma: @@ -1059,7 +1043,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1070,13 +1054,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1087,7 +1070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:12:09 GMT + - Fri, 19 Mar 2021 11:16:42 GMT expires: - '-1' pragma: @@ -1113,7 +1096,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1124,13 +1107,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1141,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:12:40 GMT + - Fri, 19 Mar 2021 11:17:12 GMT expires: - '-1' pragma: @@ -1167,7 +1149,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1178,13 +1160,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1195,7 +1176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:13:11 GMT + - Fri, 19 Mar 2021 11:17:42 GMT expires: - '-1' pragma: @@ -1221,7 +1202,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1232,13 +1213,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Creating","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Creating","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1249,7 +1229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:13:42 GMT + - Fri, 19 Mar 2021 11:18:12 GMT expires: - '-1' pragma: @@ -1275,7 +1255,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1286,13 +1266,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/545f829f-6ea5-4b1d-a567-2779521d6ebd","name":"545f829f-6ea5-4b1d-a567-2779521d6ebd","status":"Succeeded","startTime":"2021-03-02T10:10:05.4251865Z","endTime":"2021-03-02T10:14:01.2128208Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a1663852-385c-406c-bb31-903fcccf7e12","name":"a1663852-385c-406c-bb31-903fcccf7e12","status":"Succeeded","startTime":"2021-03-19T11:14:40.2465259Z","endTime":"2021-03-19T11:18:24.9953511Z","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 @@ -1303,7 +1282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:14:12 GMT + - Fri, 19 Mar 2021 11:18:43 GMT expires: - '-1' pragma: @@ -1329,7 +1308,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1340,26 +1319,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A14%3A01.2051229Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"152ee12f-a917-ae3a-1967-c877ff0134a2","fileSystemId":"152ee12f-a917-ae3a-1967-c877ff0134a2","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"152ee12f-a917-ae3a-1967-c877ff0134a2","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_31291256","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A18%3A24.9882415Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"ed344602-4e78-3884-58c9-c5b07d6d29b7","fileSystemId":"ed344602-4e78-3884-58c9-c5b07d6d29b7","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"ed344602-4e78-3884-58c9-c5b07d6d29b7","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_3da02e64","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1763' + - '1783' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:14:13 GMT + - Fri, 19 Mar 2021 11:18:43 GMT etag: - - W/"datetime'2021-03-02T10%3A14%3A01.2051229Z'" + - W/"datetime'2021-03-19T11%3A18%3A24.9882415Z'" expires: - '-1' pragma: @@ -1385,7 +1363,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1397,12 +1375,9 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -1410,17 +1385,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 10:14:16 GMT + - Fri, 19 Mar 2021 11:18:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1442,7 +1417,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1452,13 +1427,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae","name":"fa01ca2c-1963-4340-90d7-efd3b86555ae","status":"Deleting","startTime":"2021-03-02T10:14:16.1607654Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462","name":"e4f7956b-a4dc-4451-9d14-0700eb102462","status":"Deleting","startTime":"2021-03-19T11:18:47.4423207Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1469,7 +1443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:14:47 GMT + - Fri, 19 Mar 2021 11:19:17 GMT expires: - '-1' pragma: @@ -1495,7 +1469,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1505,13 +1479,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae","name":"fa01ca2c-1963-4340-90d7-efd3b86555ae","status":"Deleting","startTime":"2021-03-02T10:14:16.1607654Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462","name":"e4f7956b-a4dc-4451-9d14-0700eb102462","status":"Deleting","startTime":"2021-03-19T11:18:47.4423207Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1522,7 +1495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:15:18 GMT + - Fri, 19 Mar 2021 11:19:48 GMT expires: - '-1' pragma: @@ -1548,7 +1521,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1558,13 +1531,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa01ca2c-1963-4340-90d7-efd3b86555ae","name":"fa01ca2c-1963-4340-90d7-efd3b86555ae","status":"Succeeded","startTime":"2021-03-02T10:14:16.1607654Z","endTime":"2021-03-02T10:15:24.9254808Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e4f7956b-a4dc-4451-9d14-0700eb102462","name":"e4f7956b-a4dc-4451-9d14-0700eb102462","status":"Succeeded","startTime":"2021-03-19T11:18:47.4423207Z","endTime":"2021-03-19T11:19:54.5766318Z","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 @@ -1575,7 +1547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:15:49 GMT + - Fri, 19 Mar 2021 11:20:17 GMT expires: - '-1' pragma: @@ -1613,8 +1585,8 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: DELETE @@ -1628,11 +1600,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:15:53 GMT + - Fri, 19 Mar 2021 11:20:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1658,10 +1630,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1671,11 +1643,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:16:09 GMT + - Fri, 19 Mar 2021 11:20:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1699,10 +1671,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1712,11 +1684,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:16:25 GMT + - Fri, 19 Mar 2021 11:20:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1740,10 +1712,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1753,11 +1725,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:16:40 GMT + - Fri, 19 Mar 2021 11:21:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1781,10 +1753,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1794,11 +1766,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:16:56 GMT + - Fri, 19 Mar 2021 11:21:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1822,10 +1794,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1835,11 +1807,11 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:17:12 GMT + - Fri, 19 Mar 2021 11:21:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1863,10 +1835,10 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVEVHNTZUSVAyR1QyLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVFQzSjYzM0JGWDdOLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-10-01 response: body: string: '' @@ -1876,7 +1848,7 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 10:17:28 GMT + - Fri, 19 Mar 2021 11:21:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_disable_backup_for_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_disable_backup_for_volume.yaml index 07d802f4d2f..f0ce0f6ce56 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_disable_backup_for_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_disable_backup_for_volume.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -37,7 +37,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1e498e9c-c69f-47f5-a6dc-3288dbdbe0db?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1e498e9c-c69f-47f5-a6dc-3288dbdbe0db?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1e498e9c-c69f-47f5-a6dc-3288dbdbe0db?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1e498e9c-c69f-47f5-a6dc-3288dbdbe0db?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -258,7 +258,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -289,7 +289,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ad30cc75-b5a2-4980-942f-f6f6bca0432c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ad30cc75-b5a2-4980-942f-f6f6bca0432c?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -336,7 +336,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ad30cc75-b5a2-4980-942f-f6f6bca0432c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ad30cc75-b5a2-4980-942f-f6f6bca0432c?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -385,7 +385,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ 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 ce18af32521..2c2fdd79838 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"f2eef2ac-d331-4f0b-8e61-bdfbe863e777\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e47621a2-c93e-4516-be77-93d5350a7eca\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"29e96c35-fb89-4fff-95eb-a4ddec87c7ed\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f35359ee-cd08-4c2e-8f2a-41c2cc4bd3fa\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3d655ad3-4ab9-41fd-b5ed-7f78682f8601?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcfb84b4-dd71-48f1-997c-f34f44f2b80b?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:42 GMT + - Fri, 19 Mar 2021 12:03:27 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbd02841-3f61-4983-8b3e-77ea8678c35a + - e514207c-84da-41e9-9add-4adb25f93256 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3d655ad3-4ab9-41fd-b5ed-7f78682f8601?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcfb84b4-dd71-48f1-997c-f34f44f2b80b?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:45 GMT + - Fri, 19 Mar 2021 12:03:30 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49c8b69a-78e7-4883-b68c-cb6fa8016ffd + - 55142d11-51d5-47ab-b558-126c578c445b status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"d5471f4f-e29f-49a5-8e24-1ae394649b76\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ef30ddf2-80bb-412e-9166-ecf5e010b0dd\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"29e96c35-fb89-4fff-95eb-a4ddec87c7ed\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f35359ee-cd08-4c2e-8f2a-41c2cc4bd3fa\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:46 GMT + - Fri, 19 Mar 2021 12:03:30 GMT etag: - - W/"d5471f4f-e29f-49a5-8e24-1ae394649b76" + - W/"ef30ddf2-80bb-412e-9166-ecf5e010b0dd" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60a39b15-e67c-4348-9f59-c50c3654eaea + - 1ef53b29-24ac-4ff3-9125-8fa667a9cdfb status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"d5471f4f-e29f-49a5-8e24-1ae394649b76\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ef30ddf2-80bb-412e-9166-ecf5e010b0dd\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"29e96c35-fb89-4fff-95eb-a4ddec87c7ed\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f35359ee-cd08-4c2e-8f2a-41c2cc4bd3fa\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:47 GMT + - Fri, 19 Mar 2021 12:03:30 GMT etag: - - W/"d5471f4f-e29f-49a5-8e24-1ae394649b76" + - W/"ef30ddf2-80bb-412e-9166-ecf5e010b0dd" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6f5e32a-d74a-405a-b6f8-df95400c3834 + - 2d138be0-37a9-443d-84d8-c713aa7d2cff status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"81f8ee00-116e-4c3d-9366-090e76c59ce8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"16e00ac9-8dbf-4565-a3ba-68ecf62a9b96\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"29e96c35-fb89-4fff-95eb-a4ddec87c7ed\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f35359ee-cd08-4c2e-8f2a-41c2cc4bd3fa\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"81f8ee00-116e-4c3d-9366-090e76c59ce8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"16e00ac9-8dbf-4565-a3ba-68ecf62a9b96\\\"\"\ ,\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/\\\"81f8ee00-116e-4c3d-9366-090e76c59ce8\\\ + ,\r\n \"etag\": \"W/\\\"16e00ac9-8dbf-4565-a3ba-68ecf62a9b96\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6bae8246-c33c-49ba-b159-b59e88ef6dda?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a83cc920-95ae-4f2a-bac5-31af06e4cbc2?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:48 GMT + - Fri, 19 Mar 2021 12:03:32 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a0a0ed5-9edc-4781-8c5b-644be5113311 + - 52599a35-4a73-40d8-95c8-ffb6b8c3b01e x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6bae8246-c33c-49ba-b159-b59e88ef6dda?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a83cc920-95ae-4f2a-bac5-31af06e4cbc2?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:51 GMT + - Fri, 19 Mar 2021 12:03:35 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3726b5b-7a8a-4a28-a075-d23760f9833c + - 4d623067-188e-4deb-ae66-ae160face3f9 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"f5aa811f-37fb-4b78-be75-fd47f6fe6292\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"68cc04ae-3fc4-4b3b-a70a-02b7d6357c24\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"29e96c35-fb89-4fff-95eb-a4ddec87c7ed\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f35359ee-cd08-4c2e-8f2a-41c2cc4bd3fa\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"f5aa811f-37fb-4b78-be75-fd47f6fe6292\\\"\"\ + ,\r\n \"etag\": \"W/\\\"68cc04ae-3fc4-4b3b-a70a-02b7d6357c24\\\"\"\ ,\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/\\\"f5aa811f-37fb-4b78-be75-fd47f6fe6292\\\ + ,\r\n \"etag\": \"W/\\\"68cc04ae-3fc4-4b3b-a70a-02b7d6357c24\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:52 GMT + - Fri, 19 Mar 2021 12:03:36 GMT etag: - - W/"f5aa811f-37fb-4b78-be75-fd47f6fe6292" + - W/"68cc04ae-3fc4-4b3b-a70a-02b7d6357c24" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c6b2935-39ad-4c5c-8295-a6f2f35df853 + - cafde267-c1fd-4c82-9018-6d40ffa302a5 status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A02%3A01.5979675Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T12%3A03%3A42.1276472Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/438703b8-187e-42c9-b54c-0da4e5bc188b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a3ad7169-b87f-44ef-9053-0cb453b30eb8?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:02:02 GMT + - Fri, 19 Mar 2021 12:03:43 GMT etag: - - W/"datetime'2021-03-02T11%3A02%3A01.5979675Z'" + - W/"datetime'2021-03-19T12%3A03%3A42.1276472Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/438703b8-187e-42c9-b54c-0da4e5bc188b?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a3ad7169-b87f-44ef-9053-0cb453b30eb8?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/438703b8-187e-42c9-b54c-0da4e5bc188b","name":"438703b8-187e-42c9-b54c-0da4e5bc188b","status":"Succeeded","startTime":"2021-03-02T11:02:01.4967872Z","endTime":"2021-03-02T11:02:02.3967984Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a3ad7169-b87f-44ef-9053-0cb453b30eb8","name":"a3ad7169-b87f-44ef-9053-0cb453b30eb8","status":"Succeeded","startTime":"2021-03-19T12:03:42.0677223Z","endTime":"2021-03-19T12:03:42.2008506Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:02:34 GMT + - Fri, 19 Mar 2021 12:04:12 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,26 +566,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A02%3A02.334487Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T12%3A03%3A42.1916933Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '433' + - '434' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:02:35 GMT + - Fri, 19 Mar 2021 12:04:13 GMT etag: - - W/"datetime'2021-03-02T11%3A02%3A02.334487Z'" + - W/"datetime'2021-03-19T12%3A03%3A42.1916933Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A03%3A01.2061125Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T12%3A04%3A20.1337234Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/52dd6910-d33e-4f04-b9cb-9338dc7bf4f6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/aa5eda06-3283-43e3-84b5-0b85144170b7?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:03:01 GMT + - Fri, 19 Mar 2021 12:04:21 GMT etag: - - W/"datetime'2021-03-02T11%3A03%3A01.2061125Z'" + - W/"datetime'2021-03-19T12%3A04%3A20.1337234Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/52dd6910-d33e-4f04-b9cb-9338dc7bf4f6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/aa5eda06-3283-43e3-84b5-0b85144170b7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/52dd6910-d33e-4f04-b9cb-9338dc7bf4f6","name":"52dd6910-d33e-4f04-b9cb-9338dc7bf4f6","status":"Succeeded","startTime":"2021-03-02T11:03:01.1622929Z","endTime":"2021-03-02T11:03:02.6173065Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/aa5eda06-3283-43e3-84b5-0b85144170b7","name":"aa5eda06-3283-43e3-84b5-0b85144170b7","status":"Succeeded","startTime":"2021-03-19T12:04:20.0957373Z","endTime":"2021-03-19T12:04:20.2957767Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:03:33 GMT + - Fri, 19 Mar 2021 12:04:52 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,26 +731,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A03%3A02.6050994Z''\"","location":"eastus","properties":{"poolId":"5a0892f8-6395-38d9-5b16-cef4295db00d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T12%3A04%3A20.292836Z''\"","location":"eastus","properties":{"poolId":"216c7120-467b-970c-92e0-3fbb03f58f34","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '694' + - '693' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:03:41 GMT + - Fri, 19 Mar 2021 12:04:52 GMT etag: - - W/"datetime'2021-03-02T11%3A03%3A02.6050994Z'" + - W/"datetime'2021-03-19T12%3A04%3A20.292836Z'" expires: - '-1' pragma: @@ -796,25 +786,22 @@ interactions: Content-Length: - '394' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A03%3A50.9552841Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T12%3A04%3A59.0834633Z''\"","location":"eastus","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/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:03:52 GMT + - Fri, 19 Mar 2021 12:04:59 GMT etag: - - W/"datetime'2021-03-02T11%3A03%3A50.9552841Z'" + - W/"datetime'2021-03-19T12%3A04%3A59.0834633Z'" expires: - '-1' pragma: @@ -838,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -848,61 +835,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 11:04: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: @@ -913,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:04:55 GMT + - Fri, 19 Mar 2021 12:05:30 GMT expires: - '-1' pragma: @@ -956,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:05:25 GMT + - Fri, 19 Mar 2021 12:05:59 GMT expires: - '-1' pragma: @@ -1010,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:05:56 GMT + - Fri, 19 Mar 2021 12:06:30 GMT expires: - '-1' pragma: @@ -1064,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:06:27 GMT + - Fri, 19 Mar 2021 12:07:00 GMT expires: - '-1' pragma: @@ -1118,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1146,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:06:57 GMT + - Fri, 19 Mar 2021 12:07:31 GMT expires: - '-1' pragma: @@ -1172,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,13 +1111,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Creating","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Creating","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1200,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:07:28 GMT + - Fri, 19 Mar 2021 12:08:00 GMT expires: - '-1' pragma: @@ -1226,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,13 +1164,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/711603b1-2916-4d7b-ac0a-b93faebcd384","name":"711603b1-2916-4d7b-ac0a-b93faebcd384","status":"Succeeded","startTime":"2021-03-02T11:03:50.9123979Z","endTime":"2021-03-02T11:07:31.3179674Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ee468ddd-d219-4dde-996d-f9b7d9ee140f","name":"ee468ddd-d219-4dde-996d-f9b7d9ee140f","status":"Succeeded","startTime":"2021-03-19T12:04:59.0275644Z","endTime":"2021-03-19T12:08:22.8008302Z","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 @@ -1254,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:07:58 GMT + - Fri, 19 Mar 2021 12:08:31 GMT expires: - '-1' pragma: @@ -1280,7 +1206,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1291,26 +1217,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A07%3A31.3088117Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A08%3A22.7915723Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1834' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:07:59 GMT + - Fri, 19 Mar 2021 12:08:31 GMT etag: - - W/"datetime'2021-03-02T11%3A07%3A31.3088117Z'" + - W/"datetime'2021-03-19T12%3A08%3A22.7915723Z'" expires: - '-1' pragma: @@ -1347,28 +1272,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A07%3A31.3088117Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A08%3A22.7915723Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1834' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:02 GMT + - Fri, 19 Mar 2021 12:08:33 GMT etag: - - W/"datetime'2021-03-02T11%3A07%3A31.3088117Z'" + - W/"datetime'2021-03-19T12%3A08%3A22.7915723Z'" expires: - '-1' pragma: @@ -1413,39 +1335,36 @@ interactions: Content-Length: - '785' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A04.8435252Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A08%3A36.2371474Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0badf8b6-f4aa-4b1e-8179-1cd3ee015c24?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/959f10ec-1c00-4620-a870-04c4b42ef74d?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1813' + - '1833' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:04 GMT + - Fri, 19 Mar 2021 12:08:35 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A04.8435252Z'" + - W/"datetime'2021-03-19T12%3A08%3A36.2371474Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0badf8b6-f4aa-4b1e-8179-1cd3ee015c24?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/959f10ec-1c00-4620-a870-04c4b42ef74d?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1457,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -1467,7 +1386,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1478,13 +1397,12 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0badf8b6-f4aa-4b1e-8179-1cd3ee015c24?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/959f10ec-1c00-4620-a870-04c4b42ef74d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/0badf8b6-f4aa-4b1e-8179-1cd3ee015c24","name":"0badf8b6-f4aa-4b1e-8179-1cd3ee015c24","status":"Succeeded","startTime":"2021-03-02T11:08:04.8093823Z","endTime":"2021-03-02T11:08:23.7318436Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/959f10ec-1c00-4620-a870-04c4b42ef74d","name":"959f10ec-1c00-4620-a870-04c4b42ef74d","status":"Succeeded","startTime":"2021-03-19T12:08:36.2018591Z","endTime":"2021-03-19T12:08:44.0075874Z","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 @@ -1495,7 +1413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:35 GMT + - Fri, 19 Mar 2021 12:09:05 GMT expires: - '-1' pragma: @@ -1521,7 +1439,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1532,26 +1450,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A23.7188723Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A08%3A43.9986775Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2127' + - '2147' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:36 GMT + - Fri, 19 Mar 2021 12:09:06 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A23.7188723Z'" + - W/"datetime'2021-03-19T12%3A08%3A43.9986775Z'" expires: - '-1' pragma: @@ -1588,28 +1505,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A23.7188723Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A08%3A43.9986775Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2127' + - '2147' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:38 GMT + - Fri, 19 Mar 2021 12:09:07 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A23.7188723Z'" + - W/"datetime'2021-03-19T12%3A08%3A43.9986775Z'" expires: - '-1' pragma: @@ -1658,39 +1572,36 @@ interactions: Content-Length: - '1125' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A40.1454921Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A10.6386581Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f77ed7f-f75f-4cf4-848c-ddf03ccce370?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42c68395-7626-4892-ba62-b490e9e2189f?api-version=2020-12-01 cache-control: - no-cache content-length: - - '2126' + - '2146' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:08:39 GMT + - Fri, 19 Mar 2021 12:09:10 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A40.1454921Z'" + - W/"datetime'2021-03-19T12%3A09%3A10.6386581Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f77ed7f-f75f-4cf4-848c-ddf03ccce370?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42c68395-7626-4892-ba62-b490e9e2189f?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1712,7 +1623,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1723,13 +1634,12 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f77ed7f-f75f-4cf4-848c-ddf03ccce370?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42c68395-7626-4892-ba62-b490e9e2189f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5f77ed7f-f75f-4cf4-848c-ddf03ccce370","name":"5f77ed7f-f75f-4cf4-848c-ddf03ccce370","status":"Succeeded","startTime":"2021-03-02T11:08:40.1009979Z","endTime":"2021-03-02T11:08:50.9851996Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/42c68395-7626-4892-ba62-b490e9e2189f","name":"42c68395-7626-4892-ba62-b490e9e2189f","status":"Succeeded","startTime":"2021-03-19T12:09:10.6011158Z","endTime":"2021-03-19T12:09:18.0099269Z","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 @@ -1740,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:11 GMT + - Fri, 19 Mar 2021 12:09:41 GMT expires: - '-1' pragma: @@ -1766,7 +1676,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1777,26 +1687,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A50.9771517Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A18.0028986Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2439' + - '2459' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:11 GMT + - Fri, 19 Mar 2021 12:09:41 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A50.9771517Z'" + - W/"datetime'2021-03-19T12%3A09%3A18.0028986Z'" expires: - '-1' pragma: @@ -1832,28 +1741,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A50.9771517Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A18.0028986Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2439' + - '2459' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:13 GMT + - Fri, 19 Mar 2021 12:09:42 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A50.9771517Z'" + - W/"datetime'2021-03-19T12%3A09%3A18.0028986Z'" expires: - '-1' pragma: @@ -1889,28 +1795,25 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A08%3A50.9771517Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A18.0028986Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2439' + - '2459' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:14 GMT + - Fri, 19 Mar 2021 12:09:43 GMT etag: - - W/"datetime'2021-03-02T11%3A08%3A50.9771517Z'" + - W/"datetime'2021-03-19T12%3A09%3A18.0028986Z'" expires: - '-1' pragma: @@ -1955,38 +1858,35 @@ interactions: Content-Length: - '785' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A09%3A16.832436Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A46.3861199Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":2,"unixReadOnly":true,"unixReadWrite":false,"cifs":true,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.4.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a781dac5-6e81-424c-a0de-7803371b4678?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/39a23a61-5223-4c79-a457-54809686b7cb?api-version=2020-12-01 cache-control: - no-cache content-length: - - '2437' + - '2458' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:16 GMT + - Fri, 19 Mar 2021 12:09:46 GMT etag: - - W/"datetime'2021-03-02T11%3A09%3A16.832436Z'" + - W/"datetime'2021-03-19T12%3A09%3A46.3861199Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a781dac5-6e81-424c-a0de-7803371b4678?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/39a23a61-5223-4c79-a457-54809686b7cb?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2008,7 +1908,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2018,13 +1918,12 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a781dac5-6e81-424c-a0de-7803371b4678?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/39a23a61-5223-4c79-a457-54809686b7cb?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a781dac5-6e81-424c-a0de-7803371b4678","name":"a781dac5-6e81-424c-a0de-7803371b4678","status":"Succeeded","startTime":"2021-03-02T11:09:16.7596523Z","endTime":"2021-03-02T11:09:30.1767657Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/39a23a61-5223-4c79-a457-54809686b7cb","name":"39a23a61-5223-4c79-a457-54809686b7cb","status":"Succeeded","startTime":"2021-03-19T12:09:46.3563232Z","endTime":"2021-03-19T12:09:52.6616084Z","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 @@ -2035,7 +1934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:47 GMT + - Fri, 19 Mar 2021 12:10:16 GMT expires: - '-1' pragma: @@ -2061,7 +1960,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2071,26 +1970,25 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A09%3A30.1688692Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"b56ef224-352f-4743-2226-ecb6b44d9071","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b56ef224-352f-4743-2226-ecb6b44d9071","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_d32f81ca","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A09%3A52.6545834Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"a71245fc-cc03-1e9c-0e44-16beecc6d291","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_4f15d018","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2127' + - '2147' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:09:48 GMT + - Fri, 19 Mar 2021 12:10:16 GMT etag: - - W/"datetime'2021-03-02T11%3A09%3A30.1688692Z'" + - W/"datetime'2021-03-19T12%3A09%3A52.6545834Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_by_name.yaml index 72bb301666e..d2685f19215 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 @@ -13,34 +13,31 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A32%3A57.109504Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A17%3A23.8596711Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/94d3efbd-1e34-481c-b5f1-d319e8e3d92e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d4830-d6d6-40a0-a3d1-9c5f5906d22e?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '434' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:32:57 GMT + - Tue, 09 Mar 2021 11:17:24 GMT etag: - - W/"datetime'2021-03-01T15%3A32%3A57.109504Z'" + - W/"datetime'2021-03-09T11%3A17%3A23.8596711Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,24 +71,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94d3efbd-1e34-481c-b5f1-d319e8e3d92e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d4830-d6d6-40a0-a3d1-9c5f5906d22e?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94d3efbd-1e34-481c-b5f1-d319e8e3d92e","name":"94d3efbd-1e34-481c-b5f1-d319e8e3d92e","status":"Succeeded","startTime":"2021-03-01T15:32:57.0504699Z","endTime":"2021-03-01T15:32:57.186586Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508d4830-d6d6-40a0-a3d1-9c5f5906d22e","name":"508d4830-d6d6-40a0-a3d1-9c5f5906d22e","status":"Succeeded","startTime":"2021-03-09T11:17:23.7577731Z","endTime":"2021-03-09T11:17:23.9393819Z","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' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:33:30 GMT + - Tue, 09 Mar 2021 11:17:54 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A32%3A57.1775519Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A17%3A23.9327221Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:33:30 GMT + - Tue, 09 Mar 2021 11:17:54 GMT etag: - - W/"datetime'2021-03-01T15%3A32%3A57.1775519Z'" + - W/"datetime'2021-03-09T11%3A17%3A23.9327221Z'" expires: - '-1' pragma: @@ -182,15 +177,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A32%3A57.1775519Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A17%3A23.9327221Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -201,9 +193,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:33:33 GMT + - Tue, 09 Mar 2021 11:17:57 GMT etag: - - W/"datetime'2021-03-01T15%3A32%3A57.1775519Z'" + - W/"datetime'2021-03-09T11%3A17%3A23.9327221Z'" expires: - '-1' pragma: @@ -239,15 +231,12 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A32%3A57.1775519Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A17%3A23.9327221Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -258,9 +247,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:33:35 GMT + - Tue, 09 Mar 2021 11:17:58 GMT etag: - - W/"datetime'2021-03-01T15%3A32%3A57.1775519Z'" + - W/"datetime'2021-03-09T11%3A17%3A23.9327221Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_by_name.yaml index 5919a08cf19..cb1a80ceb3a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_by_name.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus2euap", "tags": {}, "properties": {"addressSpace": + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: @@ -12,40 +12,39 @@ interactions: Connection: - keep-alive Content-Length: - - '128' + - '131' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"35d513ab-3ee2-47a8-b915-2fcb23cbeca1\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"145d5dc2-4d35-4bbd-bd9e-20024d86b703\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c0da4e41-ee77-47b3-9403-14d9185c22fa\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"63915823-d512-4f5f-9d4c-4fb65700a7a8\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/97ccc918-e1cc-4a3f-82a4-6671ae18d105?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e1ff5135-a75c-4197-8d38-6b0b0c6a218c?api-version=2020-08-01 cache-control: - no-cache content-length: - - '809' + - '778' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:05 GMT + - Thu, 18 Mar 2021 09:15:00 GMT expires: - '-1' pragma: @@ -58,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f394ca67-427c-4a49-b24a-1cb986f070bb + - b9bb17b8-ea49-4887-83cf-f61e8a936af8 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -78,9 +77,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/97ccc918-e1cc-4a3f-82a4-6671ae18d105?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e1ff5135-a75c-4197-8d38-6b0b0c6a218c?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:08 GMT + - Thu, 18 Mar 2021 09:15:03 GMT expires: - '-1' pragma: @@ -109,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ef7b58e-d5db-41d7-bbf7-9392ca238682 + - a74ae299-30d2-436e-a6e4-e812a977e1f6 status: code: 200 message: OK @@ -127,32 +126,31 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"58b69a15-4e7e-4b35-8e1c-06256f1dc018\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"c3d9aaeb-28ab-4370-94d4-90f1c5898025\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c0da4e41-ee77-47b3-9403-14d9185c22fa\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"63915823-d512-4f5f-9d4c-4fb65700a7a8\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '810' + - '779' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:08 GMT + - Thu, 18 Mar 2021 09:15:03 GMT etag: - - W/"58b69a15-4e7e-4b35-8e1c-06256f1dc018" + - W/"c3d9aaeb-28ab-4370-94d4-90f1c5898025" expires: - '-1' pragma: @@ -169,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 511b056c-7e87-4671-9d14-5d099dd3edee + - 80838b57-28fe-4a0e-9bff-2943565a0dfb status: code: 200 message: OK @@ -187,32 +185,31 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"58b69a15-4e7e-4b35-8e1c-06256f1dc018\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"c3d9aaeb-28ab-4370-94d4-90f1c5898025\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c0da4e41-ee77-47b3-9403-14d9185c22fa\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"63915823-d512-4f5f-9d4c-4fb65700a7a8\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '810' + - '779' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:09 GMT + - Thu, 18 Mar 2021 09:15:04 GMT etag: - - W/"58b69a15-4e7e-4b35-8e1c-06256f1dc018" + - W/"c3d9aaeb-28ab-4370-94d4-90f1c5898025" expires: - '-1' pragma: @@ -229,17 +226,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e887b515-8ce0-4445-afd9-71e6a9d2d71a + - 454e0e1c-f72c-4031-b5a4-9cbe62d3a758 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006", - "location": "eastus2euap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false, "enableVmProtection": false}}' + [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -250,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '628' + - '602' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"5e503440-2b0b-43f2-a222-dbc531c890a7\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"9c3ca09c-9252-4ad4-a82a-dd5680d2187b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c0da4e41-ee77-47b3-9403-14d9185c22fa\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"63915823-d512-4f5f-9d4c-4fb65700a7a8\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"5e503440-2b0b-43f2-a222-dbc531c890a7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9c3ca09c-9252-4ad4-a82a-dd5680d2187b\\\"\"\ ,\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_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"5e503440-2b0b-43f2-a222-dbc531c890a7\\\ + ,\r\n \"etag\": \"W/\\\"9c3ca09c-9252-4ad4-a82a-dd5680d2187b\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,18 +283,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b6c9eace-fd30-415e-9900-bbfabb60380e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2357df68-ee4c-4ed2-b708-ce3caab4ec02?api-version=2020-08-01 cache-control: - no-cache content-length: - - '2368' + - '2337' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:11 GMT + - Thu, 18 Mar 2021 09:15:05 GMT expires: - '-1' pragma: @@ -314,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de275d4f-f96d-4693-a077-c9d04efc4d00 + - f35d2e49-1fcc-451c-8026-0b07a719a461 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -334,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b6c9eace-fd30-415e-9900-bbfabb60380e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2357df68-ee4c-4ed2-b708-ce3caab4ec02?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -348,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:14 GMT + - Thu, 18 Mar 2021 09:15:08 GMT expires: - '-1' pragma: @@ -365,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 033de5e1-8c4f-4229-afbe-9834f3461916 + - 437ce157-dae8-428d-acf6-c9720527359e status: code: 200 message: OK @@ -383,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ - ,\r\n \"etag\": \"W/\\\"afab5f50-a6a9-49b2-a10f-9dc9c6faf0b0\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"99c0616c-d3e1-4dc2-9005-1ad4d61afdca\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c0da4e41-ee77-47b3-9403-14d9185c22fa\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"63915823-d512-4f5f-9d4c-4fb65700a7a8\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"afab5f50-a6a9-49b2-a10f-9dc9c6faf0b0\\\"\"\ + ,\r\n \"etag\": \"W/\\\"99c0616c-d3e1-4dc2-9005-1ad4d61afdca\\\"\"\ ,\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_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"afab5f50-a6a9-49b2-a10f-9dc9c6faf0b0\\\ + ,\r\n \"etag\": \"W/\\\"99c0616c-d3e1-4dc2-9005-1ad4d61afdca\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -413,18 +410,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2370' + - '2339' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:14 GMT + - Thu, 18 Mar 2021 09:15:08 GMT etag: - - W/"afab5f50-a6a9-49b2-a10f-9dc9c6faf0b0" + - W/"99c0616c-d3e1-4dc2-9005-1ad4d61afdca" expires: - '-1' pragma: @@ -441,12 +438,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d138084-de76-404d-8da8-11a6a3677acf + - 26896cea-de93-4be6-b423-c07157aa4612 status: code: 200 message: OK - request: - body: '{"location": "eastus2euap"}' + body: '{"location": "southcentralusstage", "properties": {"encryption": {}}}' headers: Accept: - application/json @@ -457,42 +454,35 @@ interactions: Connection: - keep-alive Content-Length: - - '27' + - '69' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T14%3A05%3A20.9843465Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-18T09%3A15%3A16.4219544Z''\"","location":"southcentralusstage","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f01b7d8f-1569-4974-b458-d385a7cf0a56?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8052c209-716b-445e-9fc4-24a3f1127d62?api-version=2020-12-01 cache-control: - no-cache content-length: - - '422' + - '446' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:21 GMT + - Thu, 18 Mar 2021 09:15:17 GMT etag: - - W/"datetime'2021-01-07T14%3A05%3A20.9843465Z'" + - W/"datetime'2021-03-18T09%3A15%3A16.4219544Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -500,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -510,7 +500,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -520,30 +510,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f01b7d8f-1569-4974-b458-d385a7cf0a56?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8052c209-716b-445e-9fc4-24a3f1127d62?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f01b7d8f-1569-4974-b458-d385a7cf0a56","name":"f01b7d8f-1569-4974-b458-d385a7cf0a56","status":"Succeeded","startTime":"2021-01-07T14:05:20.9245233Z","endTime":"2021-01-07T14:05:21.0606395Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8052c209-716b-445e-9fc4-24a3f1127d62","name":"8052c209-716b-445e-9fc4-24a3f1127d62","status":"Succeeded","startTime":"2021-03-18T09:15:16.4349032Z","endTime":"2021-03-18T09:15:16.5099066Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '580' + - '588' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:52 GMT + - Thu, 18 Mar 2021 09:15: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: @@ -563,7 +548,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -573,32 +558,27 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T14%3A05%3A21.0513946Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-18T09%3A15%3A16.5007301Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '423' + - '447' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:05:53 GMT + - Thu, 18 Mar 2021 09:15:47 GMT etag: - - W/"datetime'2021-01-07T14%3A05%3A21.0513946Z'" + - W/"datetime'2021-03-18T09%3A15%3A16.5007301Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -615,8 +595,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"size": 4398046511104, "serviceLevel": - "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, + "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -627,42 +607,35 @@ interactions: Connection: - keep-alive Content-Length: - - '93' + - '101' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-01-07T14%3A06%3A00.6548518Z''\"","location":"eastus2euap","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-03-18T09%3A15%3A56.5264911Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8f815859-ed7c-4b68-8705-fcbe700db6e8?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02ac5dae-8b5f-48e4-81d1-fbde02ca6032?api-version=2020-12-01 cache-control: - no-cache content-length: - - '603' + - '611' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:06:02 GMT + - Thu, 18 Mar 2021 09:15:57 GMT etag: - - W/"datetime'2021-01-07T14%3A06%3A00.6548518Z'" + - W/"datetime'2021-03-18T09%3A15%3A56.5264911Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -680,7 +653,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -690,30 +663,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8f815859-ed7c-4b68-8705-fcbe700db6e8?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02ac5dae-8b5f-48e4-81d1-fbde02ca6032?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8f815859-ed7c-4b68-8705-fcbe700db6e8","name":"8f815859-ed7c-4b68-8705-fcbe700db6e8","status":"Succeeded","startTime":"2021-01-07T14:06:00.5999421Z","endTime":"2021-01-07T14:06:00.8641636Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02ac5dae-8b5f-48e4-81d1-fbde02ca6032","name":"02ac5dae-8b5f-48e4-81d1-fbde02ca6032","status":"Succeeded","startTime":"2021-03-18T09:15:56.5400056Z","endTime":"2021-03-18T09:15:56.9333239Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '619' + - '627' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:06:33 GMT + - Thu, 18 Mar 2021 09:16:28 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -733,7 +701,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -743,32 +711,27 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-01-07T14%3A06%3A00.8569967Z''\"","location":"eastus2euap","properties":{"poolId":"e4c65463-0d0b-8eb3-45fd-665fc213d92d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_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''2021-03-18T09%3A15%3A56.9270468Z''\"","location":"southcentralusstage","properties":{"poolId":"27e7313a-890f-27a2-cde4-4ea19ee5441f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '699' + - '707' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:06:33 GMT + - Thu, 18 Mar 2021 09:16:28 GMT etag: - - W/"datetime'2021-01-07T14%3A06%3A00.8569967Z'" + - W/"datetime'2021-03-18T09%3A15%3A56.9270468Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -785,7 +748,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"creationToken": "cli-vol-000004", + body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' headers: Accept: @@ -797,42 +760,35 @@ interactions: Connection: - keep-alive Content-Length: - - '363' + - '371' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T14%3A06%3A40.1682389Z''\"","location":"eastus2euap","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-18T09%3A16%3A37.6233859Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 cache-control: - no-cache content-length: - - '880' + - '888' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:06:41 GMT + - Thu, 18 Mar 2021 09:16:38 GMT etag: - - W/"datetime'2021-01-07T14%3A06%3A40.1682389Z'" + - W/"datetime'2021-03-18T09%3A16%3A37.6233859Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -840,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -850,7 +806,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -860,30 +816,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Creating","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:07:12 GMT + - Thu, 18 Mar 2021 09:17: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: @@ -903,7 +854,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,30 +864,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Creating","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:07:43 GMT + - Thu, 18 Mar 2021 09:17: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: @@ -956,7 +902,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -966,30 +912,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Creating","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:08:13 GMT + - Thu, 18 Mar 2021 09: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: @@ -1009,7 +950,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1019,30 +960,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Creating","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:08:44 GMT + - Thu, 18 Mar 2021 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: @@ -1062,7 +998,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1072,30 +1008,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Creating","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:09:14 GMT + - Thu, 18 Mar 2021 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: @@ -1115,7 +1046,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1125,30 +1056,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/891758e3-2639-4d2d-8f42-60b6b3ae5af1","name":"891758e3-2639-4d2d-8f42-60b6b3ae5af1","status":"Succeeded","startTime":"2021-01-07T14:06:40.1069187Z","endTime":"2021-01-07T14:09:41.7443672Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '652' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:09:45 GMT + - Thu, 18 Mar 2021 09:19: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: @@ -1168,7 +1094,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1178,32 +1104,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T14%3A09%3A41.73813Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_6f90d2c8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '1767' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:09:46 GMT - etag: - - W/"datetime'2021-01-07T14%3A09%3A41.73813Z'" + - Thu, 18 Mar 2021 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: @@ -1223,212 +1142,35 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles vault list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2020-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"b519b6f1-1ab6-11eb-b21f-863486e19f06"}}]}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '416' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Jan 2021 14:09: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: '{"location": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007?api-version=2020-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","name":"cli-acc-000002/cli-sn-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-01-07T14%3A09%3A54.326176Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/bd1846fb-366d-4637-a751-7b7db5fc9469?api-version=2020-09-01 - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Jan 2021 14:09:55 GMT - etag: - - W/"datetime'2021-01-07T14%3A09%3A54.326176Z'" - expires: - - '-1' - pragma: - - 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 account backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/bd1846fb-366d-4637-a751-7b7db5fc9469?api-version=2020-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/bd1846fb-366d-4637-a751-7b7db5fc9469","name":"bd1846fb-366d-4637-a751-7b7db5fc9469","status":"Succeeded","startTime":"2021-01-07T14:09:54.2601368Z","endTime":"2021-01-07T14:09:54.4377545Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Jan 2021 14:10: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 account backup-policy create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","name":"cli-acc-000002/cli-sn-pol-000007","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-01-07T14%3A09%3A54.4312514Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"03f56803-50f2-11eb-9739-6a90ce4d6644","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '655' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:10:26 GMT - etag: - - W/"datetime'2021-01-07T14%3A09%3A54.4312514Z'" + - Thu, 18 Mar 2021 09:20:41 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1448,108 +1190,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume update + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T14%3A09%3A41.73813Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_6f90d2c8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '1767' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Jan 2021 14:10:28 GMT - etag: - - W/"datetime'2021-01-07T14%3A09%3A41.73813Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "dataProtection": {"backup": {"backupPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007", - "policyEnforced": true, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", - "backupEnabled": true}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume update - Connection: - - keep-alive - Content-Length: - - '657' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v --vault-id --backup-enabled --backup-policy-id --policy-enforced - User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T14%3A10%3A30.424113Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":true,"backupPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-sn-pol-000007","vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"0cf1eb3c-6bea-4198-cde4-0d0382bef45b","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_6f90d2c8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '2340' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:10:51 GMT - etag: - - W/"datetime'2021-01-07T14%3A10%3A30.424113Z'" + - Thu, 18 Mar 2021 09:21:11 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1560,112 +1229,44 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-powered-by: - ASP.NET status: code: 200 message: OK -- request: - body: '{"location": "eastus2euap"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume backup create - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -p -v -l --backup-name - User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' - headers: - access-control-expose-headers: - - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a1e81021-730f-4bab-bcbe-a7f4126bd4ec?api-version=2020-09-01 - cache-control: - - no-cache - content-length: - - '574' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Jan 2021 14:10:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a1e81021-730f-4bab-bcbe-a7f4126bd4ec?api-version=2020-09-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: 201 - message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --backup-name + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a1e81021-730f-4bab-bcbe-a7f4126bd4ec?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a1e81021-730f-4bab-bcbe-a7f4126bd4ec","name":"a1e81021-730f-4bab-bcbe-a7f4126bd4ec","status":"Succeeded","startTime":"2021-01-07T14:10:53.735289Z","endTime":"2021-01-07T14:10:54.5077008Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '684' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:11:24 GMT + - Thu, 18 Mar 2021 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: @@ -1685,40 +1286,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup create + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --backup-name + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"creationDate":"2021-01-07T14:10:54Z","backupId":"e2d0a28e-346a-5d0f-8df2-05071a0f45ed","size":0,"backupType":"Adhoc","provisioningState":"Failed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '690' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:11:25 GMT + - Thu, 18 Mar 2021 09:22: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: @@ -1738,42 +1334,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -b + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"creationDate":"2021-01-07T14:10:54Z","backupId":"e2d0a28e-346a-5d0f-8df2-05071a0f45ed","size":0,"backupType":"Adhoc","provisioningState":"Failed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Creating","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '690' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:11:26 GMT + - Thu, 18 Mar 2021 09:22: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: @@ -1793,42 +1382,41 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - --ids + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"eastus2euap","properties":{"creationDate":"2021-01-07T14:10:54Z","backupId":"e2d0a28e-346a-5d0f-8df2-05071a0f45ed","size":0,"backupType":"Adhoc","provisioningState":"Failed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4e9f5266-daae-4e5d-8e0e-110b99abe4e1","name":"4e9f5266-daae-4e5d-8e0e-110b99abe4e1","status":"Failed","startTime":"2021-03-18T09:16:37.6332608Z","endTime":"2021-03-18T09:22:55.6137856Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"},"error":{"code":"InternalServerError","message":"Something + unexcepted occurred when preforming this action. Please try again, if this + problem persists please contact support for assistance and provide the CorrelationId + below.\r\n(CorrelationId: 2620c2b6-aad3-4e44-a4ca-fb3927c467d9)","details":[{"code":"NetworkAllocationFailed","message":"Something + unexcepted occurred when preforming this action. Please try again, if this + problem persists please contact support for assistance and provide the CorrelationId + below.\r\n(CorrelationId: 2620c2b6-aad3-4e44-a4ca-fb3927c467d9)"}]}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '690' + - '1235' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 14:11:27 GMT + - Thu, 18 Mar 2021 09:23: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: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_policy_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_policy_by_name.yaml index 5eac27cb103..a74edcd6550 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_policy_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_policy_by_name.yaml @@ -1,423 +1,407 @@ interactions: - - request: - body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - Content-Length: - - '61' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A52%3A02.2950366Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78ce28e4-ef75-4534-bcac-2f4c03dc1f02?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:52:02 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A02.2950366Z'" - expires: - - '-1' - pragma: - - no-cache - 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 account create - Connection: - - keep-alive - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78ce28e4-ef75-4534-bcac-2f4c03dc1f02?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78ce28e4-ef75-4534-bcac-2f4c03dc1f02","name":"78ce28e4-ef75-4534-bcac-2f4c03dc1f02","status":"Succeeded","startTime":"2021-02-25T15:52:02.3072913Z","endTime":"2021-02-25T15:52:02.4032466Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:52:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A52%3A02.3981487Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '439' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:52:34 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A02.3981487Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A52%3A41.4279011Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ef680184-8e43-458c-8b4a-2fda025ac1e4?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:52:42 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A41.4279011Z'" - expires: - - '-1' - pragma: - - no-cache - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ef680184-8e43-458c-8b4a-2fda025ac1e4?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ef680184-8e43-458c-8b4a-2fda025ac1e4","name":"ef680184-8e43-458c-8b4a-2fda025ac1e4","status":"Succeeded","startTime":"2021-02-25T15:52:41.4397626Z","endTime":"2021-02-25T15:52:41.6541925Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:53:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A52%3A41.6462053Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"7d9e9560-7781-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:53:14 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A41.6462053Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy show - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A52%3A41.6462053Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"7d9e9560-7781-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:53:17 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A41.6462053Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy show - Connection: - - keep-alive - ParameterSetName: - - --ids - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A52%3A41.6462053Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"7d9e9560-7781-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:53:18 GMT - etag: - - W/"datetime'2021-02-25T15%3A52%3A41.6462053Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"encryption": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '61' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A37%3A24.3008748Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1e89040b-bc6c-45dd-8c50-3ca92997688d?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:37:25 GMT + etag: + - W/"datetime'2021-03-15T11%3A37%3A24.3008748Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1e89040b-bc6c-45dd-8c50-3ca92997688d?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1e89040b-bc6c-45dd-8c50-3ca92997688d","name":"1e89040b-bc6c-45dd-8c50-3ca92997688d","status":"Succeeded","startTime":"2021-03-15T11:37:24.3093976Z","endTime":"2021-03-15T11:37:24.4244473Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '580' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:37:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A37%3A24.4163261Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:37:55 GMT + etag: + - W/"datetime'2021-03-15T11%3A37%3A24.4163261Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": + 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '164' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A38%3A04.3762555Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3ab5565d-b5e2-4923-ab52-884461a69bb0?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '597' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:38:05 GMT + etag: + - W/"datetime'2021-03-15T11%3A38%3A04.3762555Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3ab5565d-b5e2-4923-ab52-884461a69bb0?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3ab5565d-b5e2-4923-ab52-884461a69bb0","name":"3ab5565d-b5e2-4923-ab52-884461a69bb0","status":"Succeeded","startTime":"2021-03-15T11:38:04.3906034Z","endTime":"2021-03-15T11:38:04.6067504Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:38:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A38%3A04.5998419Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"e64254e2-8582-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:38:36 GMT + etag: + - W/"datetime'2021-03-15T11%3A38%3A04.5998419Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy show + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A38%3A04.5998419Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"e64254e2-8582-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:38:40 GMT + etag: + - W/"datetime'2021-03-15T11%3A38%3A04.5998419Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy show + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A38%3A04.5998419Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"e64254e2-8582-11eb-826a-eea7ff8e64da","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:38:41 GMT + etag: + - W/"datetime'2021-03-15T11%3A38%3A04.5998419Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml index b848e8e895f..1b6f51d82cd 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 @@ -13,24 +13,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A50%3A56.8583223Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T13%3A04%3A08.9518755Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/948efb68-5626-469d-b167-a58a2ba12ecc?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17448d05-9fe3-4c2d-a554-73e9319aee30?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:50:57 GMT + - Tue, 09 Mar 2021 13:04:10 GMT etag: - - W/"datetime'2021-03-02T08%3A50%3A56.8583223Z'" + - W/"datetime'2021-03-09T13%3A04%3A08.9518755Z'" expires: - '-1' pragma: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/948efb68-5626-469d-b167-a58a2ba12ecc?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17448d05-9fe3-4c2d-a554-73e9319aee30?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/948efb68-5626-469d-b167-a58a2ba12ecc","name":"948efb68-5626-469d-b167-a58a2ba12ecc","status":"Succeeded","startTime":"2021-03-02T08:50:56.7988802Z","endTime":"2021-03-02T08:50:56.9687579Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17448d05-9fe3-4c2d-a554-73e9319aee30","name":"17448d05-9fe3-4c2d-a554-73e9319aee30","status":"Succeeded","startTime":"2021-03-09T13:04:08.8896683Z","endTime":"2021-03-09T13:04:09.0249023Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:51:29 GMT + - Tue, 09 Mar 2021 13:04:40 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A50%3A56.9423829Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T13%3A04%3A09.0169213Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:51:30 GMT + - Tue, 09 Mar 2021 13:04:40 GMT etag: - - W/"datetime'2021-03-02T08%3A50%3A56.9423829Z'" + - W/"datetime'2021-03-09T13%3A04%3A09.0169213Z'" expires: - '-1' pragma: @@ -183,24 +178,21 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A51%3A37.9948667Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A04%3A47.1737581Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/c3e273ed-c196-46b3-bdb0-c6cbcf45ee30?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e22f995-9d28-4eac-801a-33915228bed6?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -208,9 +200,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:51:38 GMT + - Tue, 09 Mar 2021 13:04:47 GMT etag: - - W/"datetime'2021-03-02T08%3A51%3A37.9948667Z'" + - W/"datetime'2021-03-09T13%3A04%3A47.1737581Z'" expires: - '-1' pragma: @@ -224,7 +216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -234,7 +226,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -244,13 +236,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e273ed-c196-46b3-bdb0-c6cbcf45ee30?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e22f995-9d28-4eac-801a-33915228bed6?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e273ed-c196-46b3-bdb0-c6cbcf45ee30","name":"c3e273ed-c196-46b3-bdb0-c6cbcf45ee30","status":"Succeeded","startTime":"2021-03-02T08:51:37.9168754Z","endTime":"2021-03-02T08:51:38.2212818Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e22f995-9d28-4eac-801a-33915228bed6","name":"6e22f995-9d28-4eac-801a-33915228bed6","status":"Succeeded","startTime":"2021-03-09T13:04:47.1325448Z","endTime":"2021-03-09T13:04:52.0194945Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:52:10 GMT + - Tue, 09 Mar 2021 13:05:18 GMT expires: - '-1' pragma: @@ -287,7 +278,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -297,13 +288,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A51%3A38.2040167Z''\"","location":"westus2","properties":{"poolId":"2cbcdd47-ee71-9386-f44b-756b345d1c22","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A04%3A52.0061598Z''\"","location":"westus2","properties":{"poolId":"aa8f1135-ee52-6d27-6153-f85c9bb4e2fc","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +304,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:52:10 GMT + - Tue, 09 Mar 2021 13:05:19 GMT etag: - - W/"datetime'2021-03-02T08%3A51%3A38.2040167Z'" + - W/"datetime'2021-03-09T13%3A04%3A52.0061598Z'" expires: - '-1' pragma: @@ -352,15 +342,12 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A51%3A38.2040167Z''\"","location":"westus2","properties":{"poolId":"2cbcdd47-ee71-9386-f44b-756b345d1c22","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A04%3A52.0061598Z''\"","location":"westus2","properties":{"poolId":"aa8f1135-ee52-6d27-6153-f85c9bb4e2fc","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -371,9 +358,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:52:14 GMT + - Tue, 09 Mar 2021 13:05:21 GMT etag: - - W/"datetime'2021-03-02T08%3A51%3A38.2040167Z'" + - W/"datetime'2021-03-09T13%3A04%3A52.0061598Z'" expires: - '-1' pragma: @@ -409,15 +396,12 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A51%3A38.2040167Z''\"","location":"westus2","properties":{"poolId":"2cbcdd47-ee71-9386-f44b-756b345d1c22","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A04%3A52.0061598Z''\"","location":"westus2","properties":{"poolId":"aa8f1135-ee52-6d27-6153-f85c9bb4e2fc","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -428,9 +412,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:52:15 GMT + - Tue, 09 Mar 2021 13:05:22 GMT etag: - - W/"datetime'2021-03-02T08%3A51%3A38.2040167Z'" + - W/"datetime'2021-03-09T13%3A04%3A52.0061598Z'" 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 2fae4dac0c6..eb5dae1d958 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"8d606050-b66f-43ba-8fb3-885d58d21df1\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8907a23b-5546-43e5-b121-de5646965cfd\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c96eb761-2bd5-44fc-be8f-ff35e529ea9c\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"3eba6e6a-6749-4296-a825-d329ca4500a3\"\ ,\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9811cdad-cf59-4797-b31f-67295689bc73?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e87b65e6-6de4-449d-a48d-4bce5a9bca45?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:01 GMT + - Fri, 19 Mar 2021 09:57:52 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d0142dc-8e83-4eaf-ac7b-ad86bc7002a8 + - 4a029cf7-fbd4-459d-9a5d-b9b98ea6d077 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9811cdad-cf59-4797-b31f-67295689bc73?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e87b65e6-6de4-449d-a48d-4bce5a9bca45?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:05 GMT + - Fri, 19 Mar 2021 09:57:55 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62851b73-33b7-451a-a9e0-1b2af0cee277 + - 624a9b41-7802-4e67-998c-f71742aefa13 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"7d960cea-c33b-474a-82a5-2c0d98ed8109\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a4a0a53f-a323-449c-9535-44ee7d37d718\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c96eb761-2bd5-44fc-be8f-ff35e529ea9c\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3eba6e6a-6749-4296-a825-d329ca4500a3\"\ ,\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:05 GMT + - Fri, 19 Mar 2021 09:57:55 GMT etag: - - W/"7d960cea-c33b-474a-82a5-2c0d98ed8109" + - W/"a4a0a53f-a323-449c-9535-44ee7d37d718" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2b91203-dc27-4251-972b-666d717b17d0 + - f75be194-d92b-4a9e-a69a-fbcb4018dde0 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"7d960cea-c33b-474a-82a5-2c0d98ed8109\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a4a0a53f-a323-449c-9535-44ee7d37d718\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c96eb761-2bd5-44fc-be8f-ff35e529ea9c\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3eba6e6a-6749-4296-a825-d329ca4500a3\"\ ,\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:08 GMT + - Fri, 19 Mar 2021 09:57:57 GMT etag: - - W/"7d960cea-c33b-474a-82a5-2c0d98ed8109" + - W/"a4a0a53f-a323-449c-9535-44ee7d37d718" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52438fc1-fa32-46f4-b9ad-f02d29354e46 + - ded23bbc-331b-46bb-a3e2-7f70f5c4e0c7 status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"b17f3be2-ccd3-4114-9689-a824db51eb0d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8f38b430-60c1-4d68-a536-7efb16ce0435\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c96eb761-2bd5-44fc-be8f-ff35e529ea9c\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"3eba6e6a-6749-4296-a825-d329ca4500a3\"\ ,\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/\\\"b17f3be2-ccd3-4114-9689-a824db51eb0d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8f38b430-60c1-4d68-a536-7efb16ce0435\\\"\"\ ,\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/\\\"b17f3be2-ccd3-4114-9689-a824db51eb0d\\\ + ,\r\n \"etag\": \"W/\\\"8f38b430-60c1-4d68-a536-7efb16ce0435\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49f0023f-7e4d-48cc-b3df-dba121b4f675?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2148155-97d6-459b-8137-ced7eec87973?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:10 GMT + - Fri, 19 Mar 2021 09:57:59 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68428940-2ff6-45bc-a787-b00aaf8bc7d2 + - e4e28771-b03d-4bdb-95d5-ade6c541b692 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/49f0023f-7e4d-48cc-b3df-dba121b4f675?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2148155-97d6-459b-8137-ced7eec87973?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:13 GMT + - Fri, 19 Mar 2021 09:58:02 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 025784d6-d26e-4085-b047-7b1a999319b5 + - db7a7494-79a5-474c-a5d9-352b5503df88 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"d16dab97-da09-4701-a6e7-7626d2b803e8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a1caa372-d13c-4818-b25e-b96944602c33\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c96eb761-2bd5-44fc-be8f-ff35e529ea9c\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"3eba6e6a-6749-4296-a825-d329ca4500a3\"\ ,\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/\\\"d16dab97-da09-4701-a6e7-7626d2b803e8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"a1caa372-d13c-4818-b25e-b96944602c33\\\"\"\ ,\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/\\\"d16dab97-da09-4701-a6e7-7626d2b803e8\\\ + ,\r\n \"etag\": \"W/\\\"a1caa372-d13c-4818-b25e-b96944602c33\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:14 GMT + - Fri, 19 Mar 2021 09:58:03 GMT etag: - - W/"d16dab97-da09-4701-a6e7-7626d2b803e8" + - W/"a1caa372-d13c-4818-b25e-b96944602c33" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73f4624c-a421-4407-b0f9-668de4f359c0 + - 70212d96-9f03-464b-95de-f0dafe5d1dfb status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A27%3A21.7295858Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T09%3A58%3A09.8611485Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/dde827ea-e494-4c49-b954-0e0d41fd72be?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6b0efc3e-2118-4643-8b38-4827dffea8f7?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:22 GMT + - Fri, 19 Mar 2021 09:58:10 GMT etag: - - W/"datetime'2021-03-02T09%3A27%3A21.7295858Z'" + - W/"datetime'2021-03-19T09%3A58%3A09.8611485Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dde827ea-e494-4c49-b954-0e0d41fd72be?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6b0efc3e-2118-4643-8b38-4827dffea8f7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dde827ea-e494-4c49-b954-0e0d41fd72be","name":"dde827ea-e494-4c49-b954-0e0d41fd72be","status":"Succeeded","startTime":"2021-03-02T09:27:21.6646913Z","endTime":"2021-03-02T09:27:21.8071184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6b0efc3e-2118-4643-8b38-4827dffea8f7","name":"6b0efc3e-2118-4643-8b38-4827dffea8f7","status":"Succeeded","startTime":"2021-03-19T09:58:09.8229887Z","endTime":"2021-03-19T09:58:09.9398946Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:55 GMT + - Fri, 19 Mar 2021 09:58:41 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A27%3A21.7986353Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T09%3A58%3A09.9311997Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:27:56 GMT + - Fri, 19 Mar 2021 09:58:41 GMT etag: - - W/"datetime'2021-03-02T09%3A27%3A21.7986353Z'" + - W/"datetime'2021-03-19T09%3A58%3A09.9311997Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A28%3A04.8435414Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T09%3A58%3A49.9999858Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/f42e4d0a-b4fc-406a-b356-fd9f6630a801?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71c13642-b6fe-4910-a4bf-94a7da07ce4e?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:28:06 GMT + - Fri, 19 Mar 2021 09:58:51 GMT etag: - - W/"datetime'2021-03-02T09%3A28%3A04.8435414Z'" + - W/"datetime'2021-03-19T09%3A58%3A49.9999858Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f42e4d0a-b4fc-406a-b356-fd9f6630a801?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71c13642-b6fe-4910-a4bf-94a7da07ce4e?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f42e4d0a-b4fc-406a-b356-fd9f6630a801","name":"f42e4d0a-b4fc-406a-b356-fd9f6630a801","status":"Succeeded","startTime":"2021-03-02T09:28:04.7828033Z","endTime":"2021-03-02T09:28:04.9864985Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/71c13642-b6fe-4910-a4bf-94a7da07ce4e","name":"71c13642-b6fe-4910-a4bf-94a7da07ce4e","status":"Succeeded","startTime":"2021-03-19T09:58:49.9584164Z","endTime":"2021-03-19T09:58:50.3164956Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:28:37 GMT + - Fri, 19 Mar 2021 09:59:20 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A28%3A04.9736352Z''\"","location":"westus2","properties":{"poolId":"7ef3b2a3-ac5e-478e-abc7-f41898150170","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T09%3A58%3A50.3102086Z''\"","location":"westus2","properties":{"poolId":"2173ccd9-ad92-a683-b771-ddd682440cbe","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:28:38 GMT + - Fri, 19 Mar 2021 09:59:21 GMT etag: - - W/"datetime'2021-03-02T09%3A28%3A04.9736352Z'" + - W/"datetime'2021-03-19T09%3A58%3A50.3102086Z'" expires: - '-1' pragma: @@ -796,25 +786,22 @@ interactions: Content-Length: - '389' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A28%3A47.4861523Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T09%3A59%3A29.8613669Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:28:48 GMT + - Fri, 19 Mar 2021 09:59:30 GMT etag: - - W/"datetime'2021-03-02T09%3A28%3A47.4861523Z'" + - W/"datetime'2021-03-19T09%3A59%3A29.8613669Z'" expires: - '-1' pragma: @@ -838,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -848,7 +835,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Creating","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -876,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:29:20 GMT + - Fri, 19 Mar 2021 10:00:01 GMT expires: - '-1' pragma: @@ -902,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Creating","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:29:51 GMT + - Fri, 19 Mar 2021 10:00:30 GMT expires: - '-1' pragma: @@ -956,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Creating","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:30:22 GMT + - Fri, 19 Mar 2021 10:01:01 GMT expires: - '-1' pragma: @@ -1010,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Creating","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:30:52 GMT + - Fri, 19 Mar 2021 10:01:31 GMT expires: - '-1' pragma: @@ -1064,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Creating","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:31:23 GMT + - Fri, 19 Mar 2021 10:02:02 GMT expires: - '-1' pragma: @@ -1118,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +1111,65 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4384406d-92d5-4730-82f4-0133d55c93e5","name":"4384406d-92d5-4730-82f4-0133d55c93e5","status":"Succeeded","startTime":"2021-03-02T09:28:47.4283218Z","endTime":"2021-03-02T09:31:51.5148003Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Creating","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-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, 19 Mar 2021 10:02: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","name":"5b74cfb2-9d55-4ca4-9e5a-1902ef5e5a4b","status":"Succeeded","startTime":"2021-03-19T09:59:29.8171879Z","endTime":"2021-03-19T10:02:39.4458529Z","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 @@ -1146,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:31:54 GMT + - Fri, 19 Mar 2021 10:03:03 GMT expires: - '-1' pragma: @@ -1172,7 +1206,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,26 +1217,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A31%3A51.508528Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"d646352a-1b92-827a-c59b-8e7b2e5ae104","fileSystemId":"d646352a-1b92-827a-c59b-8e7b2e5ae104","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d646352a-1b92-827a-c59b-8e7b2e5ae104","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8cb503ed","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + 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''2021-03-19T10%3A02%3A39.4360041Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"bb94f526-49cb-39fc-14b5-507840f76edb","fileSystemId":"bb94f526-49cb-39fc-14b5-507840f76edb","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"bb94f526-49cb-39fc-14b5-507840f76edb","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_09fd7ecf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1808' + - '1829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:31:54 GMT + - Fri, 19 Mar 2021 10:03:03 GMT etag: - - W/"datetime'2021-03-02T09%3A31%3A51.508528Z'" + - W/"datetime'2021-03-19T10%3A02%3A39.4360041Z'" expires: - '-1' pragma: @@ -1238,16 +1271,13 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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","name":"cli-sn-000005"}}' @@ -1255,7 +1285,7 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29ebcab8-9bd3-47c1-be77-6d5100695738?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5dc116-bd2b-435c-900b-a2aa755a1ae3?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1263,11 +1293,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:31:57 GMT + - Fri, 19 Mar 2021 10:03:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29ebcab8-9bd3-47c1-be77-6d5100695738?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5dc116-bd2b-435c-900b-a2aa755a1ae3?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1289,7 +1319,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1299,13 +1329,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29ebcab8-9bd3-47c1-be77-6d5100695738?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5dc116-bd2b-435c-900b-a2aa755a1ae3?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29ebcab8-9bd3-47c1-be77-6d5100695738","name":"29ebcab8-9bd3-47c1-be77-6d5100695738","status":"Succeeded","startTime":"2021-03-02T09:31:58.1311538Z","endTime":"2021-03-02T09:32:00.8504261Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec5dc116-bd2b-435c-900b-a2aa755a1ae3","name":"ec5dc116-bd2b-435c-900b-a2aa755a1ae3","status":"Succeeded","startTime":"2021-03-19T10:03:07.6073759Z","endTime":"2021-03-19T10:03:10.3401752Z","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 @@ -1316,7 +1345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:32:32 GMT + - Fri, 19 Mar 2021 10:03:38 GMT expires: - '-1' pragma: @@ -1342,7 +1371,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1352,13 +1381,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"1e1696fe-3578-ac77-cdd1-4294b132cc2d","name":"cli-sn-000005","created":"2021-03-02T09:31:58Z"}}' + 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":"a7735e29-3613-8ff7-9bf8-d24529557032","name":"cli-sn-000005","created":"2021-03-19T10:03:07Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1369,7 +1397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:32:33 GMT + - Fri, 19 Mar 2021 10:03:38 GMT expires: - '-1' pragma: @@ -1405,15 +1433,12 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"1e1696fe-3578-ac77-cdd1-4294b132cc2d","name":"cli-sn-000005","created":"2021-03-02T09:31:58Z"}}' + 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":"a7735e29-3613-8ff7-9bf8-d24529557032","name":"cli-sn-000005","created":"2021-03-19T10:03:07Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1424,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:32:36 GMT + - Fri, 19 Mar 2021 10:03:40 GMT expires: - '-1' pragma: @@ -1460,15 +1485,12 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"1e1696fe-3578-ac77-cdd1-4294b132cc2d","name":"cli-sn-000005","created":"2021-03-02T09:31:58Z"}}' + 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":"a7735e29-3613-8ff7-9bf8-d24529557032","name":"cli-sn-000005","created":"2021-03-19T10:03:07Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1479,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:32:38 GMT + - Fri, 19 Mar 2021 10:03:42 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot_policy_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot_policy_by_name.yaml index d1669e24e32..6455c569405 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot_policy_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot_policy_by_name.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '59' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A48%3A18.5341207Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A05%3A33.9836931Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b8443f67-f132-4228-851c-87c03a0d8c9d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0e2c3e8e-24f7-4d4a-a17b-b28d3802aa9f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:48:20 GMT + - Tue, 09 Mar 2021 14:05:35 GMT etag: - - W/"datetime'2021-03-02T09%3A48%3A18.5341207Z'" + - W/"datetime'2021-03-09T14%3A05%3A33.9836931Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b8443f67-f132-4228-851c-87c03a0d8c9d?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0e2c3e8e-24f7-4d4a-a17b-b28d3802aa9f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/b8443f67-f132-4228-851c-87c03a0d8c9d","name":"b8443f67-f132-4228-851c-87c03a0d8c9d","status":"Succeeded","startTime":"2021-03-02T09:48:17.6965562Z","endTime":"2021-03-02T09:48:18.6120047Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0e2c3e8e-24f7-4d4a-a17b-b28d3802aa9f","name":"0e2c3e8e-24f7-4d4a-a17b-b28d3802aa9f","status":"Succeeded","startTime":"2021-03-09T14:05:33.8241363Z","endTime":"2021-03-09T14:05:34.0683056Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:48:51 GMT + - Tue, 09 Mar 2021 14:06:05 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A48%3A18.6031706Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A05%3A34.0597462Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:48:52 GMT + - Tue, 09 Mar 2021 14:06:05 GMT etag: - - W/"datetime'2021-03-02T09%3A48%3A18.6031706Z'" + - W/"datetime'2021-03-09T14%3A05%3A34.0597462Z'" expires: - '-1' pragma: @@ -185,24 +180,21 @@ interactions: Content-Length: - '313' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A48%3A55.8618581Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A06%3A09.1214614Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/fc66fc0b-c2f6-4533-a835-06ff84126f0b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/69853de1-c03a-4682-bb81-81d52afab916?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -210,9 +202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:48:55 GMT + - Tue, 09 Mar 2021 14:06:09 GMT etag: - - W/"datetime'2021-03-02T09%3A48%3A55.8618581Z'" + - W/"datetime'2021-03-09T14%3A06%3A09.1214614Z'" expires: - '-1' pragma: @@ -226,120 +218,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '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 policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/fc66fc0b-c2f6-4533-a835-06ff84126f0b?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/fc66fc0b-c2f6-4533-a835-06ff84126f0b","name":"fc66fc0b-c2f6-4533-a835-06ff84126f0b","status":"Succeeded","startTime":"2021-03-02T09:48:55.5811106Z","endTime":"2021-03-02T09:48:55.9655609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:49:27 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A48%3A55.9569272Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '759' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:49:28 GMT - etag: - - W/"datetime'2021-03-02T09%3A48%3A55.9569272Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -354,15 +238,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A48%3A55.9569272Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A06%3A09.1995169Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -373,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:49:30 GMT + - Tue, 09 Mar 2021 14:06:10 GMT etag: - - W/"datetime'2021-03-02T09%3A48%3A55.9569272Z'" + - W/"datetime'2021-03-09T14%3A06%3A09.1995169Z'" expires: - '-1' pragma: @@ -411,15 +292,12 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A48%3A55.9569272Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A06%3A09.1995169Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -430,9 +308,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:49:32 GMT + - Tue, 09 Mar 2021 14:06:14 GMT etag: - - W/"datetime'2021-03-02T09%3A48%3A55.9569272Z'" + - W/"datetime'2021-03-09T14%3A06%3A09.1995169Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_backup_status.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_backup_status.yaml new file mode 100644 index 00000000000..b28b912da64 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_backup_status.yaml @@ -0,0 +1,859 @@ +interactions: +- request: + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '131' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ + ,\r\n \"etag\": \"W/\\\"c4693a48-88c1-463c-af6c-b5fdbbec997c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5fc69efb-f9ad-4f3c-946d-66d16d713c5f\"\ + ,\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 }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a9364794-b00c-4fa3-8ec1-2597ddc9cb2e?api-version=2020-08-01 + cache-control: + - no-cache + content-length: + - '778' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05: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: + - 887efe5a-e28a-4141-9da7-2c2424d92cbb + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a9364794-b00c-4fa3-8ec1-2597ddc9cb2e?api-version=2020-08-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:35 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: + - 72641e8d-b6be-4b60-8c80-926dd34b25f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ + ,\r\n \"etag\": \"W/\\\"b73726f8-6198-4837-bf02-9f5a7fbb9ec8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5fc69efb-f9ad-4f3c-946d-66d16d713c5f\"\ + ,\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 }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '779' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:35 GMT + etag: + - W/"b73726f8-6198-4837-bf02-9f5a7fbb9ec8" + 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: + - 61d45bae-8ebb-4c77-8032-683922f493f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ + ,\r\n \"etag\": \"W/\\\"b73726f8-6198-4837-bf02-9f5a7fbb9ec8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5fc69efb-f9ad-4f3c-946d-66d16d713c5f\"\ + ,\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 }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '779' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:37 GMT + etag: + - W/"b73726f8-6198-4837-bf02-9f5a7fbb9ec8" + 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: + - b4b3d5d5-140f-49a2-94f8-347a35212d5c + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006", + "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", + "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", + "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '602' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ + ,\r\n \"etag\": \"W/\\\"dc23001a-6c3d-4622-81bc-259dc8ab85d8\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"5fc69efb-f9ad-4f3c-946d-66d16d713c5f\"\ + ,\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\": \"default\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ + ,\r\n \"etag\": \"W/\\\"dc23001a-6c3d-4622-81bc-259dc8ab85d8\\\"\"\ + ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"dc23001a-6c3d-4622-81bc-259dc8ab85d8\\\ + \"\",\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 }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/da982ee4-d49e-4963-bc88-ddd30b2099cb?api-version=2020-08-01 + cache-control: + - no-cache + content-length: + - '2337' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05: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: + - 477b0db9-c6c0-4e50-9f34-71fd6292a810 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/da982ee4-d49e-4963-bc88-ddd30b2099cb?api-version=2020-08-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:42 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: + - ba6aa881-f615-4662-9a11-3c7cf8f62f5c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ + ,\r\n \"etag\": \"W/\\\"36868dfd-3867-436b-8f58-c7be404b32fd\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"5fc69efb-f9ad-4f3c-946d-66d16d713c5f\"\ + ,\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\": \"default\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\"\ + ,\r\n \"etag\": \"W/\\\"36868dfd-3867-436b-8f58-c7be404b32fd\\\"\"\ + ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"36868dfd-3867-436b-8f58-c7be404b32fd\\\ + \"\",\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 }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2339' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:42 GMT + etag: + - W/"36868dfd-3867-436b-8f58-c7be404b32fd" + 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: + - f737e7de-c5c2-4d36-aa47-7a5ecb291287 + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '61' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-16T11%3A05%3A49.1772538Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5badabfa-78ea-454f-b4cb-7100930e8433?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:05:49 GMT + etag: + - W/"datetime'2021-03-16T11%3A05%3A49.1772538Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5badabfa-78ea-454f-b4cb-7100930e8433?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5badabfa-78ea-454f-b4cb-7100930e8433","name":"5badabfa-78ea-454f-b4cb-7100930e8433","status":"Succeeded","startTime":"2021-03-16T11:05:49.1858721Z","endTime":"2021-03-16T11:05:49.290867Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '579' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-16T11%3A05%3A49.2823302Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:06:19 GMT + etag: + - W/"datetime'2021-03-16T11%3A05%3A49.2823302Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '93' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-03-16T11%3A06%3A27.5855146Z''\"","location":"eastus2euap","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/72a525f5-8bb8-4a0d-8385-0d1402d88c4b?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '603' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:06:28 GMT + etag: + - W/"datetime'2021-03-16T11%3A06%3A27.5855146Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/72a525f5-8bb8-4a0d-8385-0d1402d88c4b?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/72a525f5-8bb8-4a0d-8385-0d1402d88c4b","name":"72a525f5-8bb8-4a0d-8385-0d1402d88c4b","status":"Succeeded","startTime":"2021-03-16T11:06:27.5945159Z","endTime":"2021-03-16T11:06:27.7341018Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '619' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:06:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-03-16T11%3A06%3A27.7234646Z''\"","location":"eastus2euap","properties":{"poolId":"e54dab9f-9eac-9e25-4a1f-a3ea5dcbb079","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '699' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:06:58 GMT + etag: + - W/"datetime'2021-03-16T11%3A06%3A27.7234646Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"creationToken": "cli-vol-000004", + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '363' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-16T11%3A07%3A07.8042376Z''\"","location":"eastus2euap","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f762c3cb-8e45-45b8-a120-628068b909bd?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '880' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:07:08 GMT + etag: + - W/"datetime'2021-03-16T11%3A07%3A07.8042376Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f762c3cb-8e45-45b8-a120-628068b909bd?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f762c3cb-8e45-45b8-a120-628068b909bd","name":"f762c3cb-8e45-45b8-a120-628068b909bd","status":"Failed","startTime":"2021-03-16T11:07:07.8149637Z","endTime":"2021-03-16T11:07:18.5625764Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"},"error":{"code":"InternalServerError","message":"Something + unexcepted occurred when preforming this action. Please try again, if this + problem persists please contact support for assistance and provide the CorrelationId + below.\r\n(CorrelationId: 5b79c0cd-dd9a-43a1-8f35-f29a211c9e37)","details":[{"code":"NetworkAllocationFailed","message":"Something + unexcepted occurred when preforming this action. Please try again, if this + problem persists please contact support for assistance and provide the CorrelationId + below.\r\n(CorrelationId: 5b79c0cd-dd9a-43a1-8f35-f29a211c9e37)"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '1227' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Mar 2021 11:07:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml index 2228f46b3c7..3aaeddcbbf1 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"8328a777-3303-4357-8ddc-38ae627292ae\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5be9a017-9dba-4233-86ff-6192978d454f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c071ad99-0820-47d9-b10b-e3bc10bd6d73\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"095ec7aa-5f7f-4970-97ca-7e33f75fd893\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e3409f77-9406-4d55-b8bd-e06e59365a58?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c9a21e68-030d-42d3-83bb-7cc36442db43?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:42 GMT + - Fri, 19 Mar 2021 11:49:40 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 919b1a33-c4a4-470f-93dc-0f4f7733bf04 + - 3b50ebd5-0c33-40b4-bf0e-63fb0c4246f0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e3409f77-9406-4d55-b8bd-e06e59365a58?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c9a21e68-030d-42d3-83bb-7cc36442db43?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:46 GMT + - Fri, 19 Mar 2021 11:49:44 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e6fb45d-a936-4107-8a2b-65428891d250 + - 69d276a0-e4d7-46ca-938d-0ac6ff382593 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"26e0cedb-bfd6-41fc-85f9-88d7b206e57d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"894ef669-b530-477e-86fc-2100fc2cc00e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c071ad99-0820-47d9-b10b-e3bc10bd6d73\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"095ec7aa-5f7f-4970-97ca-7e33f75fd893\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:46 GMT + - Fri, 19 Mar 2021 11:49:44 GMT etag: - - W/"26e0cedb-bfd6-41fc-85f9-88d7b206e57d" + - W/"894ef669-b530-477e-86fc-2100fc2cc00e" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2e49814-6925-4fdf-9d30-6a4252b7c7bb + - c56fc663-e310-4567-9850-cf00ef6d58b7 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"26e0cedb-bfd6-41fc-85f9-88d7b206e57d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"894ef669-b530-477e-86fc-2100fc2cc00e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c071ad99-0820-47d9-b10b-e3bc10bd6d73\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"095ec7aa-5f7f-4970-97ca-7e33f75fd893\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:47 GMT + - Fri, 19 Mar 2021 11:49:45 GMT etag: - - W/"26e0cedb-bfd6-41fc-85f9-88d7b206e57d" + - W/"894ef669-b530-477e-86fc-2100fc2cc00e" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60f407e6-f2b4-4d95-a1f4-523d6d918276 + - fcf00b82-354f-4369-a429-f17b41d7d678 status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"f891b6d8-6db5-4bd2-b242-0bc326851bda\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"fea658df-9ad9-44b0-9fdf-b6ce30025144\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"c071ad99-0820-47d9-b10b-e3bc10bd6d73\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"095ec7aa-5f7f-4970-97ca-7e33f75fd893\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"f891b6d8-6db5-4bd2-b242-0bc326851bda\\\"\"\ + ,\r\n \"etag\": \"W/\\\"fea658df-9ad9-44b0-9fdf-b6ce30025144\\\"\"\ ,\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/\\\"f891b6d8-6db5-4bd2-b242-0bc326851bda\\\ + ,\r\n \"etag\": \"W/\\\"fea658df-9ad9-44b0-9fdf-b6ce30025144\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/51efc8af-9187-49ef-8292-18ee61da6433?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e653ded-426a-426d-886d-c73960da002c?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:48 GMT + - Fri, 19 Mar 2021 11:49:46 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be6e8217-e178-43b0-bcb7-8dcbb79a8ee2 + - 30f249ef-2843-4edf-9cb4-6cd44e3ba672 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/51efc8af-9187-49ef-8292-18ee61da6433?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e653ded-426a-426d-886d-c73960da002c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:51 GMT + - Fri, 19 Mar 2021 11:49:49 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b7a3eec-f55b-4b29-87a2-43b65caf2db0 + - f737023c-03d7-43ef-b21f-3219d29570ab status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"9e562777-a998-4f6a-9de9-8e748017eee3\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"611419fe-9988-42bd-82ea-1df82908e427\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"c071ad99-0820-47d9-b10b-e3bc10bd6d73\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"095ec7aa-5f7f-4970-97ca-7e33f75fd893\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"9e562777-a998-4f6a-9de9-8e748017eee3\\\"\"\ + ,\r\n \"etag\": \"W/\\\"611419fe-9988-42bd-82ea-1df82908e427\\\"\"\ ,\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/\\\"9e562777-a998-4f6a-9de9-8e748017eee3\\\ + ,\r\n \"etag\": \"W/\\\"611419fe-9988-42bd-82ea-1df82908e427\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:51 GMT + - Fri, 19 Mar 2021 11:49:50 GMT etag: - - W/"9e562777-a998-4f6a-9de9-8e748017eee3" + - W/"611419fe-9988-42bd-82ea-1df82908e427" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf6bebe3-33c0-4b2b-9b67-e66dab9153ff + - a2438630-3e63-4d6a-8101-f1e18598323a status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A46%3A58.1764822Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A49%3A57.4272942Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c348a2fe-4811-4bed-959c-c2fa9c37f6f0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9f09a9f-0693-485f-a72e-9661fb11e74d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:59 GMT + - Fri, 19 Mar 2021 11:49:58 GMT etag: - - W/"datetime'2021-03-02T10%3A46%3A58.1764822Z'" + - W/"datetime'2021-03-19T11%3A49%3A57.4272942Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c348a2fe-4811-4bed-959c-c2fa9c37f6f0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9f09a9f-0693-485f-a72e-9661fb11e74d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c348a2fe-4811-4bed-959c-c2fa9c37f6f0","name":"c348a2fe-4811-4bed-959c-c2fa9c37f6f0","status":"Succeeded","startTime":"2021-03-02T10:46:58.12806Z","endTime":"2021-03-02T10:46:58.2515821Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c9f09a9f-0693-485f-a72e-9661fb11e74d","name":"c9f09a9f-0693-485f-a72e-9661fb11e74d","status":"Succeeded","startTime":"2021-03-19T11:49:57.3797164Z","endTime":"2021-03-19T11:49:57.5006403Z","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: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:47:30 GMT + - Fri, 19 Mar 2021 11:50:28 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A46%3A58.2445306Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T11%3A49%3A57.4923403Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:47:31 GMT + - Fri, 19 Mar 2021 11:50:28 GMT etag: - - W/"datetime'2021-03-02T10%3A46%3A58.2445306Z'" + - W/"datetime'2021-03-19T11%3A49%3A57.4923403Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '116' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A47%3A39.6497967Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A50%3A37.3267174Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c5ee016b-9584-4898-8958-96ed8c3731e8?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/58204882-b8ff-4eda-bd8b-ca11e04de869?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:47:41 GMT + - Fri, 19 Mar 2021 11:50:38 GMT etag: - - W/"datetime'2021-03-02T10%3A47%3A39.6497967Z'" + - W/"datetime'2021-03-19T11%3A50%3A37.3267174Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,24 +679,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c5ee016b-9584-4898-8958-96ed8c3731e8?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/58204882-b8ff-4eda-bd8b-ca11e04de869?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c5ee016b-9584-4898-8958-96ed8c3731e8","name":"c5ee016b-9584-4898-8958-96ed8c3731e8","status":"Succeeded","startTime":"2021-03-02T10:47:39.5731192Z","endTime":"2021-03-02T10:47:39.8417491Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/58204882-b8ff-4eda-bd8b-ca11e04de869","name":"58204882-b8ff-4eda-bd8b-ca11e04de869","status":"Succeeded","startTime":"2021-03-19T11:50:37.2677798Z","endTime":"2021-03-19T11:50:37.588518Z","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' + - '613' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:48:12 GMT + - Fri, 19 Mar 2021 11:51:09 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A47%3A39.8299242Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"poolId":"79740dd5-eeda-b3d4-d99e-d212d3caa991","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A50%3A37.5808983Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"poolId":"642ad0cf-c9c1-5c47-cb0c-188134b53dca","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:48:12 GMT + - Fri, 19 Mar 2021 11:51:09 GMT etag: - - W/"datetime'2021-03-02T10%3A47%3A39.8299242Z'" + - W/"datetime'2021-03-19T11%3A50%3A37.5808983Z'" expires: - '-1' pragma: @@ -784,9 +774,10 @@ interactions: - request: body: '{"location": "eastus", "tags": {"Tag2": "Value1"}, "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, - "exportPolicy": {"rules": [{"ruleIndex": 1, "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"}}' + "exportPolicy": {"rules": [{"ruleIndex": 1, "kerberos5iReadOnly": false, "kerberos5iReadWrite": + false, "kerberos5pReadOnly": false, "kerberos5pReadWrite": false, "nfsv3": false, + "nfsv41": true, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": ["NFSv4.1"], + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: Accept: - application/json @@ -797,28 +788,25 @@ interactions: Connection: - keep-alive Content-Length: - - '562' + - '680' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A48%3A21.5013781Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false}]},"protocolTypes":["NFSv4.1"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A51%3A16.2244279Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false}]},"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/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -826,9 +814,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:48:23 GMT + - Fri, 19 Mar 2021 11:51:17 GMT etag: - - W/"datetime'2021-03-02T10%3A48%3A21.5013781Z'" + - W/"datetime'2021-03-19T11%3A51%3A16.2244279Z'" expires: - '-1' pragma: @@ -852,7 +840,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -864,13 +852,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -881,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:48:55 GMT + - Fri, 19 Mar 2021 11:51:47 GMT expires: - '-1' pragma: @@ -907,7 +894,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -919,13 +906,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -936,7 +922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:49:27 GMT + - Fri, 19 Mar 2021 11:52:18 GMT expires: - '-1' pragma: @@ -962,7 +948,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -974,13 +960,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -991,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:49:57 GMT + - Fri, 19 Mar 2021 11:52:48 GMT expires: - '-1' pragma: @@ -1017,7 +1002,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1029,13 +1014,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1046,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:50:29 GMT + - Fri, 19 Mar 2021 11:53:18 GMT expires: - '-1' pragma: @@ -1072,7 +1056,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1084,13 +1068,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1101,7 +1084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:51:00 GMT + - Fri, 19 Mar 2021 11:53:48 GMT expires: - '-1' pragma: @@ -1127,7 +1110,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1139,13 +1122,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Creating","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Creating","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1156,7 +1138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:51:30 GMT + - Fri, 19 Mar 2021 11:54:18 GMT expires: - '-1' pragma: @@ -1182,7 +1164,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1194,13 +1176,12 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/dfbf4fe6-0114-4983-807d-a6887c756bd1","name":"dfbf4fe6-0114-4983-807d-a6887c756bd1","status":"Succeeded","startTime":"2021-03-02T10:48:21.4257585Z","endTime":"2021-03-02T10:51:41.8677839Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/180c4269-ad85-4009-8ef3-85e5cf8b1d74","name":"180c4269-ad85-4009-8ef3-85e5cf8b1d74","status":"Succeeded","startTime":"2021-03-19T11:51:16.1930453Z","endTime":"2021-03-19T11:54:46.0750888Z","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 @@ -1211,7 +1192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:01 GMT + - Fri, 19 Mar 2021 11:54:49 GMT expires: - '-1' pragma: @@ -1237,7 +1218,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1249,26 +1230,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A51%3A41.8587902Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_3f832ad8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A54%3A46.0579082Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"b2da8c70-126f-8898-5ae4-6b947987d250","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_94ee82ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1842' + - '1862' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:03 GMT + - Fri, 19 Mar 2021 11:54:49 GMT etag: - - W/"datetime'2021-03-02T10%3A51%3A41.8587902Z'" + - W/"datetime'2021-03-19T11%3A54%3A46.0579082Z'" expires: - '-1' pragma: @@ -1304,28 +1284,25 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A51%3A41.8587902Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_3f832ad8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A54%3A46.0579082Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"b2da8c70-126f-8898-5ae4-6b947987d250","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_94ee82ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1842' + - '1862' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:04 GMT + - Fri, 19 Mar 2021 11:54:51 GMT etag: - - W/"datetime'2021-03-02T10%3A51%3A41.8587902Z'" + - W/"datetime'2021-03-19T11%3A54%3A46.0579082Z'" expires: - '-1' pragma: @@ -1361,28 +1338,25 @@ interactions: ParameterSetName: - --ids User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A51%3A41.8587902Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"7a3574e5-6817-ea1b-6db4-b375e368b8e0","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_3f832ad8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A54%3A46.0579082Z''\"","location":"eastus","tags":{"Tag2":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"b2da8c70-126f-8898-5ae4-6b947987d250","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b2da8c70-126f-8898-5ae4-6b947987d250","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"cifs":false,"nfsv3":false,"nfsv41":true,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_94ee82ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1842' + - '1862' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:06 GMT + - Fri, 19 Mar 2021 11:54:53 GMT etag: - - W/"datetime'2021-03-02T10%3A51%3A41.8587902Z'" + - W/"datetime'2021-03-19T11%3A54%3A46.0579082Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_account_backups.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_account_backups.yaml index 346e83657ca..38134e220e5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_account_backups.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_account_backups.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -37,7 +37,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/a1e0eb22-b8fb-48f6-bc42-56d704c25d6c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/a1e0eb22-b8fb-48f6-bc42-56d704c25d6c?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/a1e0eb22-b8fb-48f6-bc42-56d704c25d6c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/a1e0eb22-b8fb-48f6-bc42-56d704c25d6c?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -258,7 +258,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -289,7 +289,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/065edb1e-fc5f-42f1-9a2e-452b5ed3a61a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/065edb1e-fc5f-42f1-9a2e-452b5ed3a61a?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -336,7 +336,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/065edb1e-fc5f-42f1-9a2e-452b5ed3a61a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/065edb1e-fc5f-42f1-9a2e-452b5ed3a61a?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -385,7 +385,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ 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 09d61d39bd9..04e462513ff 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 @@ -14,24 +14,21 @@ interactions: Content-Length: - '85' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A28%3A34.7008654Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A20%3A05.6713389Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"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/d4b48f39-9034-4f90-a01e-1514c540ca13?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bde5bc9-906a-46e0-b9bb-86fa19632ddc?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -39,9 +36,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:28:35 GMT + - Tue, 09 Mar 2021 11:20:06 GMT etag: - - W/"datetime'2021-03-01T15%3A28%3A34.7008654Z'" + - W/"datetime'2021-03-09T11%3A20%3A05.6713389Z'" expires: - '-1' pragma: @@ -65,7 +62,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -75,13 +72,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4b48f39-9034-4f90-a01e-1514c540ca13?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bde5bc9-906a-46e0-b9bb-86fa19632ddc?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4b48f39-9034-4f90-a01e-1514c540ca13","name":"d4b48f39-9034-4f90-a01e-1514c540ca13","status":"Succeeded","startTime":"2021-03-01T15:28:34.6440889Z","endTime":"2021-03-01T15:28:34.7848872Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bde5bc9-906a-46e0-b9bb-86fa19632ddc","name":"8bde5bc9-906a-46e0-b9bb-86fa19632ddc","status":"Succeeded","startTime":"2021-03-09T11:20:05.6078766Z","endTime":"2021-03-09T11:20:05.7520326Z","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 @@ -92,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:08 GMT + - Tue, 09 Mar 2021 11:20:37 GMT expires: - '-1' pragma: @@ -118,7 +114,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -128,13 +124,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A28%3A34.7779192Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A20%3A05.7443898Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -145,9 +140,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:08 GMT + - Tue, 09 Mar 2021 11:20:37 GMT etag: - - W/"datetime'2021-03-01T15%3A28%3A34.7779192Z'" + - W/"datetime'2021-03-09T11%3A20%3A05.7443898Z'" expires: - '-1' pragma: @@ -184,24 +179,21 @@ interactions: Content-Length: - '85' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A29%3A15.9688198Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003","name":"cli000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A20%3A45.9164072Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"encryption":{},"provisioningState":"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/43416048-5b85-4eaf-92d0-6351230e921a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7194c8be-8a28-4caf-8e60-0fcf20a28d27?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -209,9 +201,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:17 GMT + - Tue, 09 Mar 2021 11:20:46 GMT etag: - - W/"datetime'2021-03-01T15%3A29%3A15.9688198Z'" + - W/"datetime'2021-03-09T11%3A20%3A45.9164072Z'" expires: - '-1' pragma: @@ -225,7 +217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -235,7 +227,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -245,13 +237,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43416048-5b85-4eaf-92d0-6351230e921a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7194c8be-8a28-4caf-8e60-0fcf20a28d27?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43416048-5b85-4eaf-92d0-6351230e921a","name":"43416048-5b85-4eaf-92d0-6351230e921a","status":"Succeeded","startTime":"2021-03-01T15:29:15.9199309Z","endTime":"2021-03-01T15:29:16.0558461Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7194c8be-8a28-4caf-8e60-0fcf20a28d27","name":"7194c8be-8a28-4caf-8e60-0fcf20a28d27","status":"Succeeded","startTime":"2021-03-09T11:20:45.8506047Z","endTime":"2021-03-09T11:20:46.0164071Z","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 @@ -262,7 +253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:49 GMT + - Tue, 09 Mar 2021 11:21:18 GMT expires: - '-1' pragma: @@ -288,7 +279,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -298,13 +289,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A29%3A16.0498773Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A20%3A46.0094722Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -315,9 +305,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:50 GMT + - Tue, 09 Mar 2021 11:21:18 GMT etag: - - W/"datetime'2021-03-01T15%3A29%3A16.0498773Z'" + - W/"datetime'2021-03-09T11%3A20%3A46.0094722Z'" expires: - '-1' pragma: @@ -353,15 +343,12 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-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''2021-03-01T15%3A28%3A34.7779192Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}},{"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''2021-03-01T15%3A29%3A16.0498773Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' + 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''2021-03-09T11%3A20%3A05.7443898Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}},{"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''2021-03-09T11%3A20%3A46.0094722Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{}}}]}' headers: access-control-expose-headers: - Request-Context @@ -372,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:29:52 GMT + - Tue, 09 Mar 2021 11:21:20 GMT expires: - '-1' pragma: @@ -398,7 +385,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -410,12 +397,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -423,17 +407,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6dcd4815-20af-4136-ab1c-2f180383709b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0db6685-0e15-4639-a3cc-451cdf29014f?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 01 Mar 2021 15:29:54 GMT + - Tue, 09 Mar 2021 11:21:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6dcd4815-20af-4136-ab1c-2f180383709b?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0db6685-0e15-4639-a3cc-451cdf29014f?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -455,7 +439,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -465,13 +449,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6dcd4815-20af-4136-ab1c-2f180383709b?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0db6685-0e15-4639-a3cc-451cdf29014f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6dcd4815-20af-4136-ab1c-2f180383709b","name":"6dcd4815-20af-4136-ab1c-2f180383709b","status":"Succeeded","startTime":"2021-03-01T15:29:55.3995498Z","endTime":"2021-03-01T15:29:55.5095763Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0db6685-0e15-4639-a3cc-451cdf29014f","name":"a0db6685-0e15-4639-a3cc-451cdf29014f","status":"Succeeded","startTime":"2021-03-09T11:21:22.7392549Z","endTime":"2021-03-09T11:21:22.8492508Z","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 @@ -482,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:30:26 GMT + - Tue, 09 Mar 2021 11:21:52 GMT expires: - '-1' pragma: @@ -508,7 +491,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -520,12 +503,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -533,17 +513,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15ed08bb-7639-4d16-a618-4fd801ffad5e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fbcccef-6dca-44de-bc27-035d1f1130cb?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 01 Mar 2021 15:30:30 GMT + - Tue, 09 Mar 2021 11:21:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15ed08bb-7639-4d16-a618-4fd801ffad5e?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fbcccef-6dca-44de-bc27-035d1f1130cb?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -565,7 +545,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -575,24 +555,23 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15ed08bb-7639-4d16-a618-4fd801ffad5e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fbcccef-6dca-44de-bc27-035d1f1130cb?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/15ed08bb-7639-4d16-a618-4fd801ffad5e","name":"15ed08bb-7639-4d16-a618-4fd801ffad5e","status":"Succeeded","startTime":"2021-03-01T15:30:30.240314Z","endTime":"2021-03-01T15:30:30.3389868Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fbcccef-6dca-44de-bc27-035d1f1130cb","name":"4fbcccef-6dca-44de-bc27-035d1f1130cb","status":"Succeeded","startTime":"2021-03-09T11:21:56.1275108Z","endTime":"2021-03-09T11:21:56.2373651Z","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' + - '576' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:31:02 GMT + - Tue, 09 Mar 2021 11:22:26 GMT expires: - '-1' pragma: @@ -628,12 +607,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-12-01 response: body: string: '{"value":[]}' @@ -645,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:31:02 GMT + - Tue, 09 Mar 2021 11:22:27 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup.yaml index cfc37efa46f..35a1d47468d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -37,7 +37,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/5658d951-1e3a-4f86-8d77-89c040dfa1cd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/5658d951-1e3a-4f86-8d77-89c040dfa1cd?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/5658d951-1e3a-4f86-8d77-89c040dfa1cd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/5658d951-1e3a-4f86-8d77-89c040dfa1cd?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -258,7 +258,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -289,7 +289,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b5ed0927-d0f0-4027-adbd-e0f24390f385?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b5ed0927-d0f0-4027-adbd-e0f24390f385?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -336,7 +336,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b5ed0927-d0f0-4027-adbd-e0f24390f385?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/b5ed0927-d0f0-4027-adbd-e0f24390f385?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -385,7 +385,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup_policy.yaml index 9e611c7341b..86d84bc5d91 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_backup_policy.yaml @@ -1,1041 +1,1003 @@ interactions: - - request: - body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - Content-Length: - - '61' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A31%3A50.3858237Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dcc20af2-6d7d-47d1-ac36-aad2f362634f?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:31:50 GMT - etag: - - W/"datetime'2021-02-25T15%3A31%3A50.3858237Z'" - expires: - - '-1' - pragma: - - no-cache - 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/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dcc20af2-6d7d-47d1-ac36-aad2f362634f?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dcc20af2-6d7d-47d1-ac36-aad2f362634f","name":"dcc20af2-6d7d-47d1-ac36-aad2f362634f","status":"Succeeded","startTime":"2021-02-25T15:31:50.3968411Z","endTime":"2021-02-25T15:31:50.5414303Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:32:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T15%3A31%3A50.5333966Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '439' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:32:23 GMT - etag: - - W/"datetime'2021-02-25T15%3A31%3A50.5333966Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A32%3A28.488388Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/902b5ab5-6c9a-4e88-9a95-051d7a74fdc3?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:32:30 GMT - etag: - - W/"datetime'2021-02-25T15%3A32%3A28.488388Z'" - expires: - - '-1' - pragma: - - no-cache - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/902b5ab5-6c9a-4e88-9a95-051d7a74fdc3?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/902b5ab5-6c9a-4e88-9a95-051d7a74fdc3","name":"902b5ab5-6c9a-4e88-9a95-051d7a74fdc3","status":"Succeeded","startTime":"2021-02-25T15:32:28.4979905Z","endTime":"2021-02-25T15:32:28.7301632Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A32%3A28.7176594Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"aaa4210c-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:02 GMT - etag: - - W/"datetime'2021-02-25T15%3A32%3A28.7176594Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A09.105211Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dbf24163-d953-47bd-9181-9ac05e89c1c9?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:10 GMT - etag: - - W/"datetime'2021-02-25T15%3A33%3A09.105211Z'" - expires: - - '-1' - pragma: - - no-cache - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dbf24163-d953-47bd-9181-9ac05e89c1c9?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/dbf24163-d953-47bd-9181-9ac05e89c1c9","name":"dbf24163-d953-47bd-9181-9ac05e89c1c9","status":"Succeeded","startTime":"2021-02-25T15:33:09.1134969Z","endTime":"2021-02-25T15:33:09.2970022Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A09.2906871Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"c311c788-777e-11eb-9a1c-8ed14b47ba4c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:43 GMT - etag: - - W/"datetime'2021-02-25T15%3A33%3A09.2906871Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": - 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '165' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A49.7542281Z''\"","location":"eastus2euap","properties":{"enabled":false,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e007c44b-f67a-4d36-bc3a-08df65f355f4?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:33:50 GMT - etag: - - W/"datetime'2021-02-25T15%3A33%3A49.7542281Z'" - expires: - - '-1' - pragma: - - no-cache - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e007c44b-f67a-4d36-bc3a-08df65f355f4?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e007c44b-f67a-4d36-bc3a-08df65f355f4","name":"e007c44b-f67a-4d36-bc3a-08df65f355f4","status":"Succeeded","startTime":"2021-02-25T15:33:49.7645499Z","endTime":"2021-02-25T15:33:49.9753575Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:34:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l --daily-backups - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A49.9667949Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"db13738a-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '655' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:34:22 GMT - etag: - - W/"datetime'2021-02-25T15%3A33%3A49.9667949Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A09.2906871Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"c311c788-777e-11eb-9a1c-8ed14b47ba4c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A33%3A49.9667949Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"db13738a-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T15%3A32%3A28.7176594Z''\"","location":"eastus2euap","properties":{"enabled":false,"backupPolicyId":"aaa4210c-777e-11eb-8355-2eebf74dd4e6","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1979' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:34:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-11-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffc8e624-5d93-4ddc-ac46-31b569df2041?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Feb 2021 15:34:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffc8e624-5d93-4ddc-ac46-31b569df2041?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy delete - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffc8e624-5d93-4ddc-ac46-31b569df2041?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffc8e624-5d93-4ddc-ac46-31b569df2041","name":"ffc8e624-5d93-4ddc-ac46-31b569df2041","status":"Succeeded","startTime":"2021-02-25T15:34:28.0994186Z","endTime":"2021-02-25T15:34:30.0079413Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:34:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-11-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b09d4486-a47c-445f-b8b0-aaa58766d3d6?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Feb 2021 15:35:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b09d4486-a47c-445f-b8b0-aaa58766d3d6?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy delete - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b09d4486-a47c-445f-b8b0-aaa58766d3d6?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b09d4486-a47c-445f-b8b0-aaa58766d3d6","name":"b09d4486-a47c-445f-b8b0-aaa58766d3d6","status":"Succeeded","startTime":"2021-02-25T15:35:02.5798816Z","endTime":"2021-02-25T15:35:04.9419754Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:35:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-11-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e2fa9a10-3897-4ce7-96df-ba197bbadf47?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Feb 2021 15:35:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e2fa9a10-3897-4ce7-96df-ba197bbadf47?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy delete - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e2fa9a10-3897-4ce7-96df-ba197bbadf47?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e2fa9a10-3897-4ce7-96df-ba197bbadf47","name":"e2fa9a10-3897-4ce7-96df-ba197bbadf47","status":"Succeeded","startTime":"2021-02-25T15:35:36.3137817Z","endTime":"2021-02-25T15:35:38.578378Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005"}}' - headers: - cache-control: - - no-cache - content-length: - - '611' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:36:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy list - Connection: - - keep-alive - ParameterSetName: - - -g -a - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-11-01 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 15:36:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "properties": {"encryption": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '61' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A26%3A21.2879527Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2532a8f7-9f25-4963-a1ac-ddcfca99b31e?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '438' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:26:22 GMT + etag: + - W/"datetime'2021-03-15T11%3A26%3A21.2879527Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2532a8f7-9f25-4963-a1ac-ddcfca99b31e?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2532a8f7-9f25-4963-a1ac-ddcfca99b31e","name":"2532a8f7-9f25-4963-a1ac-ddcfca99b31e","status":"Succeeded","startTime":"2021-03-15T11:26:21.2952638Z","endTime":"2021-03-15T11:26:21.4102397Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '580' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:26:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A26%3A21.4033447Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:26:52 GMT + etag: + - W/"datetime'2021-03-15T11%3A26%3A21.4033447Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": + 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '164' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A00.9371766Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c54642d1-736d-4082-a51b-e8d7c6a4b523?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '597' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:27:01 GMT + etag: + - W/"datetime'2021-03-15T11%3A27%3A00.9371766Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c54642d1-736d-4082-a51b-e8d7c6a4b523?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c54642d1-736d-4082-a51b-e8d7c6a4b523","name":"c54642d1-736d-4082-a51b-e8d7c6a4b523","status":"Succeeded","startTime":"2021-03-15T11:27:00.9487946Z","endTime":"2021-03-15T11:27:01.4766934Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:27:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A01.4627732Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"5c8413af-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:27:33 GMT + etag: + - W/"datetime'2021-03-15T11%3A27%3A01.4627732Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": + 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '164' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A41.6216193Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78609dc5-d8c3-4f49-b974-53444bbd05dc?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '597' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:27:42 GMT + etag: + - W/"datetime'2021-03-15T11%3A27%3A41.6216193Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78609dc5-d8c3-4f49-b974-53444bbd05dc?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78609dc5-d8c3-4f49-b974-53444bbd05dc","name":"78609dc5-d8c3-4f49-b974-53444bbd05dc","status":"Succeeded","startTime":"2021-03-15T11:27:41.6301391Z","endTime":"2021-03-15T11:27:41.8201787Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A41.802406Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"748b3c15-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:13 GMT + etag: + - W/"datetime'2021-03-15T11%3A27%3A41.802406Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": + 0, "monthlyBackupsToKeep": 0, "yearlyBackupsToKeep": 0, "enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '164' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A28%3A22.3102404Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/13a9fe5a-8bac-4fa6-abc0-ec428b709364?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '597' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:22 GMT + etag: + - W/"datetime'2021-03-15T11%3A28%3A22.3102404Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/13a9fe5a-8bac-4fa6-abc0-ec428b709364?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/13a9fe5a-8bac-4fa6-abc0-ec428b709364","name":"13a9fe5a-8bac-4fa6-abc0-ec428b709364","status":"Succeeded","startTime":"2021-03-15T11:28:22.3191569Z","endTime":"2021-03-15T11:28:22.4457053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l --daily-backups --enabled + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A28%3A22.4371562Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"8cc4032f-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:54 GMT + etag: + - W/"datetime'2021-03-15T11%3A28%3A22.4371562Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A01.4627732Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"5c8413af-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A28%3A22.4371562Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"8cc4032f-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A27%3A41.802406Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"748b3c15-8581-11eb-a93f-66bb173f6536","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1975' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:28:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003?api-version=2020-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d559a8f-699c-40bf-8a16-362038f8285f?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Mar 2021 11:29:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d559a8f-699c-40bf-8a16-362038f8285f?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d559a8f-699c-40bf-8a16-362038f8285f?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d559a8f-699c-40bf-8a16-362038f8285f","name":"9d559a8f-699c-40bf-8a16-362038f8285f","status":"Succeeded","startTime":"2021-03-15T11:29:00.3881253Z","endTime":"2021-03-15T11:29:02.2965531Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:29:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004?api-version=2020-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7411266-78ce-43e5-ac56-50923bcb95b4?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Mar 2021 11:29:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7411266-78ce-43e5-ac56-50923bcb95b4?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7411266-78ce-43e5-ac56-50923bcb95b4?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e7411266-78ce-43e5-ac56-50923bcb95b4","name":"e7411266-78ce-43e5-ac56-50923bcb95b4","status":"Succeeded","startTime":"2021-03-15T11:29:34.2987546Z","endTime":"2021-03-15T11:29:36.4808151Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:30:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005?api-version=2020-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2aa72a4-dc7e-4ed4-af82-d443768760b4?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Mar 2021 11:30:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2aa72a4-dc7e-4ed4-af82-d443768760b4?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy delete + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2aa72a4-dc7e-4ed4-af82-d443768760b4?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2aa72a4-dc7e-4ed4-af82-d443768760b4","name":"a2aa72a4-dc7e-4ed4-af82-d443768760b4","status":"Succeeded","startTime":"2021-03-15T11:30:07.8373051Z","endTime":"2021-03-15T11:30:09.8857817Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:30:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 backup-policy list + Connection: + - keep-alive + ParameterSetName: + - -g -a + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies?api-version=2020-12-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:30:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml index 2a61cd5e52c..b27754058f6 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 @@ -13,34 +13,31 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A47%3A06.014105Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T13%3A00%3A41.7514905Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/d769007c-350a-496b-990e-3bd494105005?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1215fbdf-9f72-48ab-b0b1-05a59e108d50?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '434' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:47:06 GMT + - Tue, 09 Mar 2021 13:00:42 GMT etag: - - W/"datetime'2021-03-02T08%3A47%3A06.014105Z'" + - W/"datetime'2021-03-09T13%3A00%3A41.7514905Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,24 +71,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d769007c-350a-496b-990e-3bd494105005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1215fbdf-9f72-48ab-b0b1-05a59e108d50?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d769007c-350a-496b-990e-3bd494105005","name":"d769007c-350a-496b-990e-3bd494105005","status":"Succeeded","startTime":"2021-03-02T08:47:05.9535522Z","endTime":"2021-03-02T08:47:06.1299107Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1215fbdf-9f72-48ab-b0b1-05a59e108d50","name":"1215fbdf-9f72-48ab-b0b1-05a59e108d50","status":"Succeeded","startTime":"2021-03-09T13:00:41.7083656Z","endTime":"2021-03-09T13:00:41.830621Z","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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:47:39 GMT + - Tue, 09 Mar 2021 13:01:13 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,26 +123,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A47%3A06.119178Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T13%3A00%3A41.8235412Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '434' + - '435' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:47:39 GMT + - Tue, 09 Mar 2021 13:01:13 GMT etag: - - W/"datetime'2021-03-02T08%3A47%3A06.119178Z'" + - W/"datetime'2021-03-09T13%3A00%3A41.8235412Z'" expires: - '-1' pragma: @@ -183,24 +178,21 @@ interactions: Content-Length: - '117' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A47%3A50.6425764Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A01%3A20.2745759Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/4cd15fe5-1e80-4a9a-bac3-6bb209c7c68a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/163c907c-c551-4ee4-8103-4a08a0118622?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -208,9 +200,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:47:51 GMT + - Tue, 09 Mar 2021 13:01:21 GMT etag: - - W/"datetime'2021-03-02T08%3A47%3A50.6425764Z'" + - W/"datetime'2021-03-09T13%3A01%3A20.2745759Z'" expires: - '-1' pragma: @@ -234,7 +226,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -244,13 +236,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cd15fe5-1e80-4a9a-bac3-6bb209c7c68a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/163c907c-c551-4ee4-8103-4a08a0118622?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cd15fe5-1e80-4a9a-bac3-6bb209c7c68a","name":"4cd15fe5-1e80-4a9a-bac3-6bb209c7c68a","status":"Succeeded","startTime":"2021-03-02T08:47:50.5728949Z","endTime":"2021-03-02T08:47:50.9622448Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/163c907c-c551-4ee4-8103-4a08a0118622","name":"163c907c-c551-4ee4-8103-4a08a0118622","status":"Succeeded","startTime":"2021-03-09T13:01:20.2134475Z","endTime":"2021-03-09T13:01:20.5234678Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -261,7 +252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:48:23 GMT + - Tue, 09 Mar 2021 13:01:51 GMT expires: - '-1' pragma: @@ -287,7 +278,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -297,13 +288,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A47%3A50.9507986Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"f8b3847c-ef43-b4fd-cace-667ac9c3ac3b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A01%3A20.4937284Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"d0a59c55-8a9a-a20d-cf17-56ce6f6e2a84","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -314,9 +304,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:48:23 GMT + - Tue, 09 Mar 2021 13:01:51 GMT etag: - - W/"datetime'2021-03-02T08%3A47%3A50.9507986Z'" + - W/"datetime'2021-03-09T13%3A01%3A20.4937284Z'" expires: - '-1' pragma: @@ -353,24 +343,21 @@ interactions: Content-Length: - '117' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A48%3A32.9789808Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A01%3A58.6585639Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/60e8df51-399a-43b1-8644-a6182d725082?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e3d0ec65-2e2c-47cb-a794-afe0fb08f70c?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -378,9 +365,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:48:34 GMT + - Tue, 09 Mar 2021 13:01:59 GMT etag: - - W/"datetime'2021-03-02T08%3A48%3A32.9789808Z'" + - W/"datetime'2021-03-09T13%3A01%3A58.6585639Z'" expires: - '-1' pragma: @@ -404,7 +391,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -414,13 +401,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60e8df51-399a-43b1-8644-a6182d725082?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e3d0ec65-2e2c-47cb-a794-afe0fb08f70c?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60e8df51-399a-43b1-8644-a6182d725082","name":"60e8df51-399a-43b1-8644-a6182d725082","status":"Succeeded","startTime":"2021-03-02T08:48:32.9116107Z","endTime":"2021-03-02T08:48:33.1874536Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e3d0ec65-2e2c-47cb-a794-afe0fb08f70c","name":"e3d0ec65-2e2c-47cb-a794-afe0fb08f70c","status":"Succeeded","startTime":"2021-03-09T13:01:58.5815319Z","endTime":"2021-03-09T13:02:02.1667114Z","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 @@ -431,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:49:06 GMT + - Tue, 09 Mar 2021 13:02:30 GMT expires: - '-1' pragma: @@ -457,7 +443,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -467,26 +453,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A48%3A33.1821269Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"b9f0dd79-0524-29d6-3fe5-343203dbb96d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A02%3A02.158027Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"56b39c62-3dd8-1691-58a3-4b34783c9c1b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '720' + - '719' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:49:07 GMT + - Tue, 09 Mar 2021 13:02:31 GMT etag: - - W/"datetime'2021-03-02T08%3A48%3A33.1821269Z'" + - W/"datetime'2021-03-09T13%3A02%3A02.158027Z'" expires: - '-1' pragma: @@ -522,26 +507,23 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T08%3A48%3A33.1821269Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"b9f0dd79-0524-29d6-3fe5-343203dbb96d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T08%3A47%3A50.9507986Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"f8b3847c-ef43-b4fd-cace-667ac9c3ac3b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A02%3A02.158027Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"56b39c62-3dd8-1691-58a3-4b34783c9c1b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A01%3A20.4937284Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"poolId":"d0a59c55-8a9a-a20d-cf17-56ce6f6e2a84","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1453' + - '1452' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:49:09 GMT + - Tue, 09 Mar 2021 13:02:33 GMT expires: - '-1' pragma: @@ -567,7 +549,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -579,12 +561,9 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -592,17 +571,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acf3ca20-abc4-473c-ab4b-ae91fe2fbf9f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8afaa25f-6a8c-4190-bc6d-4b1e5f78c873?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 08:49:12 GMT + - Tue, 09 Mar 2021 13:02:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acf3ca20-abc4-473c-ab4b-ae91fe2fbf9f?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8afaa25f-6a8c-4190-bc6d-4b1e5f78c873?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -624,7 +603,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -634,13 +613,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acf3ca20-abc4-473c-ab4b-ae91fe2fbf9f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8afaa25f-6a8c-4190-bc6d-4b1e5f78c873?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acf3ca20-abc4-473c-ab4b-ae91fe2fbf9f","name":"acf3ca20-abc4-473c-ab4b-ae91fe2fbf9f","status":"Succeeded","startTime":"2021-03-02T08:49:12.7001996Z","endTime":"2021-03-02T08:49:13.0172275Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8afaa25f-6a8c-4190-bc6d-4b1e5f78c873","name":"8afaa25f-6a8c-4190-bc6d-4b1e5f78c873","status":"Succeeded","startTime":"2021-03-09T13:02:35.9483794Z","endTime":"2021-03-09T13:02:36.6912842Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -651,7 +629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:49:44 GMT + - Tue, 09 Mar 2021 13:03:05 GMT expires: - '-1' pragma: @@ -677,7 +655,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -689,12 +667,9 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -702,17 +677,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7da3a84a-e28c-4650-82ae-3b737c5db6d6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce706733-ed33-46ff-852a-6a115c0fec9e?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 08:49:47 GMT + - Tue, 09 Mar 2021 13:03:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7da3a84a-e28c-4650-82ae-3b737c5db6d6?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce706733-ed33-46ff-852a-6a115c0fec9e?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -734,7 +709,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -744,13 +719,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7da3a84a-e28c-4650-82ae-3b737c5db6d6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce706733-ed33-46ff-852a-6a115c0fec9e?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7da3a84a-e28c-4650-82ae-3b737c5db6d6","name":"7da3a84a-e28c-4650-82ae-3b737c5db6d6","status":"Succeeded","startTime":"2021-03-02T08:49:47.6009567Z","endTime":"2021-03-02T08:49:47.8212673Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce706733-ed33-46ff-852a-6a115c0fec9e","name":"ce706733-ed33-46ff-852a-6a115c0fec9e","status":"Succeeded","startTime":"2021-03-09T13:03:09.5905462Z","endTime":"2021-03-09T13:03:12.3833624Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004"}}' headers: access-control-expose-headers: - Request-Context @@ -761,7 +735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:50:18 GMT + - Tue, 09 Mar 2021 13:03:40 GMT expires: - '-1' pragma: @@ -797,12 +771,9 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '{"value":[]}' @@ -816,7 +787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:50:21 GMT + - Tue, 09 Mar 2021 13:03:41 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshot_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshot_policy.yaml index 67618bbc1a9..4514b9e9eb4 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshot_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshot_policy.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '59' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A43%3A49.1671704Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A02%3A49.0205134Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/67498771-3a58-436b-8e39-8e48c1071ee7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3540eb26-c241-4a49-b9dd-fac44968aab0?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:43:49 GMT + - Tue, 09 Mar 2021 14:02:50 GMT etag: - - W/"datetime'2021-03-02T09%3A43%3A49.1671704Z'" + - W/"datetime'2021-03-09T14%3A02%3A49.0205134Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/67498771-3a58-436b-8e39-8e48c1071ee7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3540eb26-c241-4a49-b9dd-fac44968aab0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/67498771-3a58-436b-8e39-8e48c1071ee7","name":"67498771-3a58-436b-8e39-8e48c1071ee7","status":"Succeeded","startTime":"2021-03-02T09:43:49.0953494Z","endTime":"2021-03-02T09:43:49.2512044Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3540eb26-c241-4a49-b9dd-fac44968aab0","name":"3540eb26-c241-4a49-b9dd-fac44968aab0","status":"Succeeded","startTime":"2021-03-09T14:02:48.8398124Z","endTime":"2021-03-09T14:02:49.1019525Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:44:21 GMT + - Tue, 09 Mar 2021 14:03:20 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A43%3A49.2402231Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A02%3A49.0925646Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:44:22 GMT + - Tue, 09 Mar 2021 14:03:20 GMT etag: - - W/"datetime'2021-03-02T09%3A43%3A49.2402231Z'" + - W/"datetime'2021-03-09T14%3A02%3A49.0925646Z'" expires: - '-1' pragma: @@ -185,24 +180,21 @@ interactions: Content-Length: - '313' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A44%3A25.5662381Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A24.1012203Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/891e84ec-a937-46fb-ae7c-9578ebf9530a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/45b1c441-fe22-40a8-8937-fbd681532f90?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -210,9 +202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:44:25 GMT + - Tue, 09 Mar 2021 14:03:23 GMT etag: - - W/"datetime'2021-03-02T09%3A44%3A25.5662381Z'" + - W/"datetime'2021-03-09T14%3A03%3A24.1012203Z'" expires: - '-1' pragma: @@ -232,114 +224,6 @@ interactions: status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/891e84ec-a937-46fb-ae7c-9578ebf9530a?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/891e84ec-a937-46fb-ae7c-9578ebf9530a","name":"891e84ec-a937-46fb-ae7c-9578ebf9530a","status":"Succeeded","startTime":"2021-03-02T09:44:25.4676983Z","endTime":"2021-03-02T09:44:25.7009154Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:44: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 snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A44%3A25.6903269Z''\"","location":"centralus","properties":{"name":"cli000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '759' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:44:57 GMT - etag: - - W/"datetime'2021-03-02T09%3A44%3A25.6903269Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "centralus", "properties": {"hourlySchedule": {"snapshotsToKeep": 1, "minute": 10}, "dailySchedule": {"snapshotsToKeep": 0, "hour": 0, "minute": @@ -357,24 +241,21 @@ interactions: Content-Length: - '313' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A00.8495139Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A26.5829677Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8617ccab-e1d0-4715-9f6f-9b49fd795995?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3f5f80b7-470e-47a1-8c97-97a739c41c8d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -382,9 +263,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:45:00 GMT + - Tue, 09 Mar 2021 14:03:26 GMT etag: - - W/"datetime'2021-03-02T09%3A45%3A00.8495139Z'" + - W/"datetime'2021-03-09T14%3A03%3A26.5829677Z'" expires: - '-1' pragma: @@ -398,120 +279,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8617ccab-e1d0-4715-9f6f-9b49fd795995?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8617ccab-e1d0-4715-9f6f-9b49fd795995","name":"8617ccab-e1d0-4715-9f6f-9b49fd795995","status":"Succeeded","startTime":"2021-03-02T09:45:00.7901182Z","endTime":"2021-03-02T09:45:00.9523847Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:45: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 snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A00.9335737Z''\"","location":"centralus","properties":{"name":"cli000004","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '759' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:45:34 GMT - etag: - - W/"datetime'2021-03-02T09%3A45%3A00.9335737Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "centralus", "properties": {"hourlySchedule": {"snapshotsToKeep": 1, "minute": 10}, "dailySchedule": {"snapshotsToKeep": 0, "hour": 0, "minute": @@ -529,24 +302,21 @@ interactions: Content-Length: - '313' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A37.9971239Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A28.8615729Z''\"","location":"centralus","properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/de77b306-ced5-439d-bf1e-19e8af20f406?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f3fa480e-35a8-4667-8d64-000b943757b2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -554,9 +324,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:45:37 GMT + - Tue, 09 Mar 2021 14:03:28 GMT etag: - - W/"datetime'2021-03-02T09%3A45%3A37.9971239Z'" + - W/"datetime'2021-03-09T14%3A03%3A28.8615729Z'" expires: - '-1' pragma: @@ -576,114 +346,6 @@ interactions: status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/de77b306-ced5-439d-bf1e-19e8af20f406?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/de77b306-ced5-439d-bf1e-19e8af20f406","name":"de77b306-ced5-439d-bf1e-19e8af20f406","status":"Succeeded","startTime":"2021-03-02T09:45:37.6924686Z","endTime":"2021-03-02T09:45:38.0893286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:46: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 snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A38.0791822Z''\"","location":"centralus","properties":{"name":"cli000005","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '759' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:46:09 GMT - etag: - - W/"datetime'2021-03-02T09%3A45%3A38.0791822Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -698,15 +360,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A44%3A25.6903269Z''\"","location":"centralus","properties":{"name":"cli000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A38.0791822Z''\"","location":"centralus","properties":{"name":"cli000005","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A45%3A00.9335737Z''\"","location":"centralus","properties":{"name":"cli000004","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005","name":"cli-acc-000002/cli000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A28.9566398Z''\"","location":"centralus","properties":{"name":"cli000005","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004","name":"cli-acc-000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A26.6560191Z''\"","location":"centralus","properties":{"name":"cli000004","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003","name":"cli-acc-000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A03%3A24.2112974Z''\"","location":"centralus","properties":{"name":"cli000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context @@ -717,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:46:12 GMT + - Tue, 09 Mar 2021 14:03:29 GMT expires: - '-1' pragma: @@ -743,7 +402,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -755,12 +414,9 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003?api-version=2020-12-01 response: body: string: '' @@ -768,17 +424,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a46b9ccd-69bf-471d-bb81-b0aef43a69ec?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/c2e9cc66-5b3e-44bf-b507-1c2de15b913a?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:46:14 GMT + - Tue, 09 Mar 2021 14:03:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a46b9ccd-69bf-471d-bb81-b0aef43a69ec?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/c2e9cc66-5b3e-44bf-b507-1c2de15b913a?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -790,7 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -800,7 +456,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -810,13 +466,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a46b9ccd-69bf-471d-bb81-b0aef43a69ec?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/c2e9cc66-5b3e-44bf-b507-1c2de15b913a?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a46b9ccd-69bf-471d-bb81-b0aef43a69ec","name":"a46b9ccd-69bf-471d-bb81-b0aef43a69ec","status":"Succeeded","startTime":"2021-03-02T09:46:14.5237919Z","endTime":"2021-03-02T09:46:14.6249039Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/c2e9cc66-5b3e-44bf-b507-1c2de15b913a","name":"c2e9cc66-5b3e-44bf-b507-1c2de15b913a","status":"Succeeded","startTime":"2021-03-09T14:03:31.9789795Z","endTime":"2021-03-09T14:03:32.2197865Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000003"}}' headers: access-control-expose-headers: - Request-Context @@ -827,7 +482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:46:46 GMT + - Tue, 09 Mar 2021 14:04:02 GMT expires: - '-1' pragma: @@ -853,7 +508,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -865,12 +520,9 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004?api-version=2020-12-01 response: body: string: '' @@ -878,17 +530,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/1f2f3bec-1e9e-43ad-b0ff-5093257d6e23?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/5176bfc2-0ddf-478a-9473-899bbaf0f001?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:46:47 GMT + - Tue, 09 Mar 2021 14:04:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/1f2f3bec-1e9e-43ad-b0ff-5093257d6e23?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/5176bfc2-0ddf-478a-9473-899bbaf0f001?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -910,7 +562,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -920,13 +572,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/1f2f3bec-1e9e-43ad-b0ff-5093257d6e23?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/5176bfc2-0ddf-478a-9473-899bbaf0f001?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/1f2f3bec-1e9e-43ad-b0ff-5093257d6e23","name":"1f2f3bec-1e9e-43ad-b0ff-5093257d6e23","status":"Succeeded","startTime":"2021-03-02T09:46:48.2367091Z","endTime":"2021-03-02T09:46:48.4226813Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/5176bfc2-0ddf-478a-9473-899bbaf0f001","name":"5176bfc2-0ddf-478a-9473-899bbaf0f001","status":"Succeeded","startTime":"2021-03-09T14:04:04.3515772Z","endTime":"2021-03-09T14:04:04.8035821Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000004"}}' headers: access-control-expose-headers: - Request-Context @@ -937,7 +588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:47:19 GMT + - Tue, 09 Mar 2021 14:04:34 GMT expires: - '-1' pragma: @@ -963,7 +614,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -975,12 +626,9 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005?api-version=2020-12-01 response: body: string: '' @@ -988,17 +636,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7661abb4-6bd6-48f8-98dc-d27a7d9ec28c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/79c52ff8-9537-4222-bdcc-545a7c34d518?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:47:22 GMT + - Tue, 09 Mar 2021 14:04:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7661abb4-6bd6-48f8-98dc-d27a7d9ec28c?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/79c52ff8-9537-4222-bdcc-545a7c34d518?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1010,7 +658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -1020,7 +668,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1030,13 +678,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7661abb4-6bd6-48f8-98dc-d27a7d9ec28c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/79c52ff8-9537-4222-bdcc-545a7c34d518?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/7661abb4-6bd6-48f8-98dc-d27a7d9ec28c","name":"7661abb4-6bd6-48f8-98dc-d27a7d9ec28c","status":"Succeeded","startTime":"2021-03-02T09:47:22.2536176Z","endTime":"2021-03-02T09:47:22.6047382Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/79c52ff8-9537-4222-bdcc-545a7c34d518","name":"79c52ff8-9537-4222-bdcc-545a7c34d518","status":"Succeeded","startTime":"2021-03-09T14:04:37.4666416Z","endTime":"2021-03-09T14:04:37.6225769Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli000005"}}' headers: access-control-expose-headers: - Request-Context @@ -1047,7 +694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:47:53 GMT + - Tue, 09 Mar 2021 14:05:07 GMT expires: - '-1' pragma: @@ -1083,12 +730,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies?api-version=2020-12-01 response: body: string: '{"value":[]}' @@ -1102,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:47:55 GMT + - Tue, 09 Mar 2021 14:05:10 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 f61b3e85436..3f32b0abe25 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"edf8570b-24ef-48c1-9e48-d2e8681f3908\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"45779f42-a277-46ae-8f08-269bd74b1a97\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f58306f5-7c6b-48a6-bb67-b767da9f5a42\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"7a675a04-9654-462b-99d4-94460fec5556\"\ ,\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/57510874-9786-4376-9bf0-434f998297ec?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/31e1b34d-529b-4d8a-9ee9-bd8540f02a83?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:27 GMT + - Fri, 19 Mar 2021 10:20:22 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8eb4138b-924f-423e-86c5-2b0356c81898 + - 9ffc3b7c-56d6-4892-b1c4-705eea4d9b97 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/57510874-9786-4376-9bf0-434f998297ec?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/31e1b34d-529b-4d8a-9ee9-bd8540f02a83?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:30 GMT + - Fri, 19 Mar 2021 10:20:25 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58969049-0c91-4279-9af6-2ef70a1b0fc2 + - 919b5d0c-5cce-473a-aa17-ef2e8e02fc90 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"cc983818-d3fe-480d-a874-f5a1686f0629\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0131dbdd-c90b-4323-b9f3-db0366fa2814\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f58306f5-7c6b-48a6-bb67-b767da9f5a42\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"7a675a04-9654-462b-99d4-94460fec5556\"\ ,\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:30 GMT + - Fri, 19 Mar 2021 10:20:25 GMT etag: - - W/"cc983818-d3fe-480d-a874-f5a1686f0629" + - W/"0131dbdd-c90b-4323-b9f3-db0366fa2814" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07b47a6c-06a3-4c6f-b678-68ac1e976f36 + - 4307da36-7e34-43ac-93a6-e13f664f07a4 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"cc983818-d3fe-480d-a874-f5a1686f0629\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0131dbdd-c90b-4323-b9f3-db0366fa2814\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f58306f5-7c6b-48a6-bb67-b767da9f5a42\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"7a675a04-9654-462b-99d4-94460fec5556\"\ ,\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:32 GMT + - Fri, 19 Mar 2021 10:20:27 GMT etag: - - W/"cc983818-d3fe-480d-a874-f5a1686f0629" + - W/"0131dbdd-c90b-4323-b9f3-db0366fa2814" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35ee9a2e-cfda-4486-85e2-f1ad2da6bf68 + - f4965dbc-2c28-4e40-9074-c65958cc82f7 status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"44394925-24af-4724-a2a3-ff736aedbc44\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"94a0ac15-ef99-43f2-9e52-1d0f79faa827\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f58306f5-7c6b-48a6-bb67-b767da9f5a42\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"7a675a04-9654-462b-99d4-94460fec5556\"\ ,\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/\\\"44394925-24af-4724-a2a3-ff736aedbc44\\\"\"\ + ,\r\n \"etag\": \"W/\\\"94a0ac15-ef99-43f2-9e52-1d0f79faa827\\\"\"\ ,\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/\\\"44394925-24af-4724-a2a3-ff736aedbc44\\\ + ,\r\n \"etag\": \"W/\\\"94a0ac15-ef99-43f2-9e52-1d0f79faa827\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/629f5d8d-c3e9-4c79-8126-0df1c89a1413?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/40032296-aebc-436c-ad5a-2fb4a96d78e7?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:33 GMT + - Fri, 19 Mar 2021 10:20:29 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a022e023-9956-4eac-a238-57e06d72678f + - ee3a5943-f7c1-4dba-9787-6d1cceb5ff85 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/629f5d8d-c3e9-4c79-8126-0df1c89a1413?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/40032296-aebc-436c-ad5a-2fb4a96d78e7?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:37 GMT + - Fri, 19 Mar 2021 10:20:32 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5373f81-d5f1-4fa5-98bc-52fc736d0a22 + - c2bfdd91-1219-45d9-bb3a-36e11ab5fcb2 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"15c94de3-6b88-4e0e-b423-aedeb8b6864e\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"2bde6593-8158-4b0b-be76-56f90eafa32f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f58306f5-7c6b-48a6-bb67-b767da9f5a42\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"7a675a04-9654-462b-99d4-94460fec5556\"\ ,\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/\\\"15c94de3-6b88-4e0e-b423-aedeb8b6864e\\\"\"\ + ,\r\n \"etag\": \"W/\\\"2bde6593-8158-4b0b-be76-56f90eafa32f\\\"\"\ ,\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/\\\"15c94de3-6b88-4e0e-b423-aedeb8b6864e\\\ + ,\r\n \"etag\": \"W/\\\"2bde6593-8158-4b0b-be76-56f90eafa32f\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:37 GMT + - Fri, 19 Mar 2021 10:20:32 GMT etag: - - W/"15c94de3-6b88-4e0e-b423-aedeb8b6864e" + - W/"2bde6593-8158-4b0b-be76-56f90eafa32f" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef631ac4-c40d-4bb0-b9eb-770e3d25cca4 + - a74b9381-1e34-41e8-a88a-b469f775f963 status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A19%3A43.7977121Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A20%3A40.4931084Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/49f6af1d-8e8b-4944-b661-8ffcde5f77b4?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f8954d6-5678-46cf-8db5-6e74cc2296ca?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:19:45 GMT + - Fri, 19 Mar 2021 10:20:41 GMT etag: - - W/"datetime'2021-03-02T09%3A19%3A43.7977121Z'" + - W/"datetime'2021-03-19T10%3A20%3A40.4931084Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/49f6af1d-8e8b-4944-b661-8ffcde5f77b4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f8954d6-5678-46cf-8db5-6e74cc2296ca?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/49f6af1d-8e8b-4944-b661-8ffcde5f77b4","name":"49f6af1d-8e8b-4944-b661-8ffcde5f77b4","status":"Succeeded","startTime":"2021-03-02T09:19:43.7364808Z","endTime":"2021-03-02T09:19:43.8827131Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f8954d6-5678-46cf-8db5-6e74cc2296ca","name":"7f8954d6-5678-46cf-8db5-6e74cc2296ca","status":"Succeeded","startTime":"2021-03-19T10:20:40.4456235Z","endTime":"2021-03-19T10:20:40.5706481Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:20:16 GMT + - Fri, 19 Mar 2021 10:21:11 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A19%3A43.8757676Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T10%3A20%3A40.5631583Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:20:17 GMT + - Fri, 19 Mar 2021 10:21:12 GMT etag: - - W/"datetime'2021-03-02T09%3A19%3A43.8757676Z'" + - W/"datetime'2021-03-19T10%3A20%3A40.5631583Z'" expires: - '-1' pragma: @@ -626,34 +621,31 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A20%3A26.4044121Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A21%3A20.417792Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/723f3955-5e26-4ba0-885c-e9319334b367?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e6625c8-f2e4-45f0-8316-b6ac2288bdf6?api-version=2020-12-01 cache-control: - no-cache content-length: - - '599' + - '598' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:20:26 GMT + - Fri, 19 Mar 2021 10:21:21 GMT etag: - - W/"datetime'2021-03-02T09%3A20%3A26.4044121Z'" + - W/"datetime'2021-03-19T10%3A21%3A20.417792Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/723f3955-5e26-4ba0-885c-e9319334b367?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e6625c8-f2e4-45f0-8316-b6ac2288bdf6?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/723f3955-5e26-4ba0-885c-e9319334b367","name":"723f3955-5e26-4ba0-885c-e9319334b367","status":"Succeeded","startTime":"2021-03-02T09:20:26.3506133Z","endTime":"2021-03-02T09:20:26.5340845Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5e6625c8-f2e4-45f0-8316-b6ac2288bdf6","name":"5e6625c8-f2e4-45f0-8316-b6ac2288bdf6","status":"Succeeded","startTime":"2021-03-19T10:21:20.3793904Z","endTime":"2021-03-19T10:21:20.5852897Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:20:59 GMT + - Fri, 19 Mar 2021 10:21:51 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A20%3A26.5295019Z''\"","location":"westus2","properties":{"poolId":"64593487-7d08-218d-5772-6ee61095e93f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A21%3A20.5769058Z''\"","location":"westus2","properties":{"poolId":"a679d31c-99a2-23f6-8b50-1d62c5e12486","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:21:00 GMT + - Fri, 19 Mar 2021 10:21:52 GMT etag: - - W/"datetime'2021-03-02T09%3A20%3A26.5295019Z'" + - W/"datetime'2021-03-19T10%3A21%3A20.5769058Z'" expires: - '-1' pragma: @@ -796,35 +786,32 @@ interactions: Content-Length: - '389' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A21%3A08.505642Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A21%3A59.2677022Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 cache-control: - no-cache content-length: - - '903' + - '904' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:21:09 GMT + - Fri, 19 Mar 2021 10:22:00 GMT etag: - - W/"datetime'2021-03-02T09%3A21%3A08.505642Z'" + - W/"datetime'2021-03-19T10%3A21%3A59.2677022Z'" expires: - '-1' pragma: @@ -848,61 +835,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:21: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: @@ -913,24 +846,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Creating","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:22:11 GMT + - Fri, 19 Mar 2021 10:22:30 GMT expires: - '-1' pragma: @@ -956,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,24 +899,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Creating","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:22:42 GMT + - Fri, 19 Mar 2021 10:23:01 GMT expires: - '-1' pragma: @@ -1010,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,24 +952,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Creating","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:23:12 GMT + - Fri, 19 Mar 2021 10:23:30 GMT expires: - '-1' pragma: @@ -1064,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,24 +1005,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Creating","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:23:43 GMT + - Fri, 19 Mar 2021 10:24:01 GMT expires: - '-1' pragma: @@ -1118,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,24 +1058,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Creating","startTime":"2021-03-02T09:21:08.450332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Creating","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:24:14 GMT + - Fri, 19 Mar 2021 10:24:32 GMT expires: - '-1' pragma: @@ -1172,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,24 +1111,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/488d3954-2381-4d1e-b337-be253950ddb7","name":"488d3954-2381-4d1e-b337-be253950ddb7","status":"Succeeded","startTime":"2021-03-02T09:21:08.450332Z","endTime":"2021-03-02T09:24:18.1101074Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56a83968-e084-4b29-9f25-70ae95124b60","name":"56a83968-e084-4b29-9f25-70ae95124b60","status":"Succeeded","startTime":"2021-03-19T10:21:59.2303203Z","endTime":"2021-03-19T10:24:54.9233079Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '648' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:24:44 GMT + - Fri, 19 Mar 2021 10:25:02 GMT expires: - '-1' pragma: @@ -1226,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,26 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A24%3A18.0997519Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"3d7a197d-8980-06b9-e188-4561cbb280c1","fileSystemId":"3d7a197d-8980-06b9-e188-4561cbb280c1","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"3d7a197d-8980-06b9-e188-4561cbb280c1","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c1023407","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + 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''2021-03-19T10%3A24%3A54.9148797Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"e6a1941f-b421-b8b3-c5e4-10f971e2bab3","fileSystemId":"e6a1941f-b421-b8b3-c5e4-10f971e2bab3","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"e6a1941f-b421-b8b3-c5e4-10f971e2bab3","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_0655750f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1809' + - '1829' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:24:45 GMT + - Fri, 19 Mar 2021 10:25:02 GMT etag: - - W/"datetime'2021-03-02T09%3A24%3A18.0997519Z'" + - W/"datetime'2021-03-19T10%3A24%3A54.9148797Z'" expires: - '-1' pragma: @@ -1292,16 +1218,13 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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","name":"cli-sn-000005"}}' @@ -1309,7 +1232,7 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3dc4cba2-e30b-4b85-9f60-b6a67f69053f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7330440a-25f5-4cca-af60-41617a1ef24d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1317,11 +1240,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:24:48 GMT + - Fri, 19 Mar 2021 10:25:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3dc4cba2-e30b-4b85-9f60-b6a67f69053f?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7330440a-25f5-4cca-af60-41617a1ef24d?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1333,7 +1256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1343,7 +1266,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1353,13 +1276,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3dc4cba2-e30b-4b85-9f60-b6a67f69053f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7330440a-25f5-4cca-af60-41617a1ef24d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3dc4cba2-e30b-4b85-9f60-b6a67f69053f","name":"3dc4cba2-e30b-4b85-9f60-b6a67f69053f","status":"Succeeded","startTime":"2021-03-02T09:24:48.5579493Z","endTime":"2021-03-02T09:24:51.2892256Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7330440a-25f5-4cca-af60-41617a1ef24d","name":"7330440a-25f5-4cca-af60-41617a1ef24d","status":"Succeeded","startTime":"2021-03-19T10:25:05.6592629Z","endTime":"2021-03-19T10:25:07.7153633Z","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 @@ -1370,7 +1292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:19 GMT + - Fri, 19 Mar 2021 10:25:35 GMT expires: - '-1' pragma: @@ -1396,7 +1318,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1406,13 +1328,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"b3f586f5-6c91-39b5-b947-ec41410275fd","name":"cli-sn-000005","created":"2021-03-02T09:24:48Z"}}' + 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":"d1b8b8b1-70ce-6f06-8764-411102a042c4","name":"cli-sn-000005","created":"2021-03-19T10:25:06Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1423,7 +1344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:20 GMT + - Fri, 19 Mar 2021 10:25:35 GMT expires: - '-1' pragma: @@ -1459,16 +1380,13 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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","name":"cli-sn-000006"}}' @@ -1476,7 +1394,7 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1c2d2ac-e767-4bb1-bfb5-8a9b69e902d2?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f4f97a4-bd8b-4faa-abe3-9b9cdea64163?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1484,11 +1402,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:24 GMT + - Fri, 19 Mar 2021 10:25:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1c2d2ac-e767-4bb1-bfb5-8a9b69e902d2?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f4f97a4-bd8b-4faa-abe3-9b9cdea64163?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1500,7 +1418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1510,7 +1428,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1520,13 +1438,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1c2d2ac-e767-4bb1-bfb5-8a9b69e902d2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f4f97a4-bd8b-4faa-abe3-9b9cdea64163?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1c2d2ac-e767-4bb1-bfb5-8a9b69e902d2","name":"c1c2d2ac-e767-4bb1-bfb5-8a9b69e902d2","status":"Succeeded","startTime":"2021-03-02T09:25:24.2196231Z","endTime":"2021-03-02T09:25:26.8460765Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f4f97a4-bd8b-4faa-abe3-9b9cdea64163","name":"3f4f97a4-bd8b-4faa-abe3-9b9cdea64163","status":"Succeeded","startTime":"2021-03-19T10:25:39.1218437Z","endTime":"2021-03-19T10:25:41.8096616Z","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 @@ -1537,7 +1454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:55 GMT + - Fri, 19 Mar 2021 10:26:08 GMT expires: - '-1' pragma: @@ -1563,7 +1480,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1573,13 +1490,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"8b35c436-41fe-6e8b-be62-e048a4ee9895","name":"cli-sn-000006","created":"2021-03-02T09:25:24Z"}}' + 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":"bdb78557-300a-000f-9a99-0fdf3061e0a5","name":"cli-sn-000006","created":"2021-03-19T10:25:39Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1590,7 +1506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:56 GMT + - Fri, 19 Mar 2021 10:26:09 GMT expires: - '-1' pragma: @@ -1626,15 +1542,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"b3f586f5-6c91-39b5-b947-ec41410275fd","fileSystemId":"3d7a197d-8980-06b9-e188-4561cbb280c1","name":"cli-sn-000005","created":"2021-03-02T09:24:48Z"}},{"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":"8b35c436-41fe-6e8b-be62-e048a4ee9895","fileSystemId":"3d7a197d-8980-06b9-e188-4561cbb280c1","name":"cli-sn-000006","created":"2021-03-02T09:25:24Z"}}]}' + 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":"d1b8b8b1-70ce-6f06-8764-411102a042c4","fileSystemId":"e6a1941f-b421-b8b3-c5e4-10f971e2bab3","name":"cli-sn-000005","created":"2021-03-19T10:25:06Z"}},{"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":"bdb78557-300a-000f-9a99-0fdf3061e0a5","fileSystemId":"e6a1941f-b421-b8b3-c5e4-10f971e2bab3","name":"cli-sn-000006","created":"2021-03-19T10:25:39Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1645,7 +1558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:25:58 GMT + - Fri, 19 Mar 2021 10:26:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_vault.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_vault.yaml index 29def6838d9..adb149eca06 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_vault.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_vault.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus2euap", "tags": {}, "properties": {"addressSpace": + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: @@ -12,40 +12,39 @@ interactions: Connection: - keep-alive Content-Length: - - '128' + - '131' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"a4a774e2-127e-45c6-9131-efd735d8ec08\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"600e2735-1fee-41ae-892e-3cd7b42704d9\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"4c31dffe-e018-46b6-b370-f4e96e163360\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"dc263284-969c-4c9a-b208-099decb50744\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c08a2a30-7af6-4c78-ac63-d0b1343e3958?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/27365ac3-4f24-4604-80db-442c178f44b3?api-version=2020-11-01 cache-control: - no-cache content-length: - - '793' + - '762' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:01 GMT + - Fri, 19 Mar 2021 10:36:49 GMT expires: - '-1' pragma: @@ -58,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 808c7766-230b-400c-b682-443a603e1eee + - 209eb122-2e55-4bee-9255-f26c51eb4ccb x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -78,9 +77,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c08a2a30-7af6-4c78-ac63-d0b1343e3958?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/27365ac3-4f24-4604-80db-442c178f44b3?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:04 GMT + - Fri, 19 Mar 2021 10:36:52 GMT expires: - '-1' pragma: @@ -109,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 442313f5-5358-4f74-8a5f-d499aa453c2f + - 739f0ef4-a219-4513-b219-1d817342d037 status: code: 200 message: OK @@ -127,32 +126,31 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"b1110d2a-06df-4b3c-85e6-66cbf8740d98\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"edc9d368-f69b-496a-9d61-8d2948736ab2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4c31dffe-e018-46b6-b370-f4e96e163360\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"dc263284-969c-4c9a-b208-099decb50744\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '794' + - '763' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:04 GMT + - Fri, 19 Mar 2021 10:36:53 GMT etag: - - W/"b1110d2a-06df-4b3c-85e6-66cbf8740d98" + - W/"edc9d368-f69b-496a-9d61-8d2948736ab2" expires: - '-1' pragma: @@ -169,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 215e2e53-7924-4c6a-a361-b78c354b4594 + - a154491b-ffa1-44c7-b131-77e729968319 status: code: 200 message: OK @@ -187,32 +185,31 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"b1110d2a-06df-4b3c-85e6-66cbf8740d98\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"edc9d368-f69b-496a-9d61-8d2948736ab2\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4c31dffe-e018-46b6-b370-f4e96e163360\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"dc263284-969c-4c9a-b208-099decb50744\"\ ,\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}" + \ [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '794' + - '763' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:05 GMT + - Fri, 19 Mar 2021 10:36:54 GMT etag: - - W/"b1110d2a-06df-4b3c-85e6-66cbf8740d98" + - W/"edc9d368-f69b-496a-9d61-8d2948736ab2" expires: - '-1' pragma: @@ -229,17 +226,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 47682d0c-0283-4d00-b66b-1f87c7a8c39c + - 6ce31a75-7854-4530-9506-0d88214b2a4b status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "eastus2euap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-lefr-02", "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": {"serviceName": "Microsoft.Netapp/volumes"}}]}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false, "enableVmProtection": false}}' + [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -250,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '631' + - '605' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"903ba7e8-d470-40ae-b851-4474cc3b5774\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"0586e825-e59e-473b-9105-918881a79d7f\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"4c31dffe-e018-46b6-b370-f4e96e163360\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"dc263284-969c-4c9a-b208-099decb50744\"\ ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"903ba7e8-d470-40ae-b851-4474cc3b5774\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0586e825-e59e-473b-9105-918881a79d7f\\\"\"\ ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"903ba7e8-d470-40ae-b851-4474cc3b5774\\\ + ,\r\n \"etag\": \"W/\\\"0586e825-e59e-473b-9105-918881a79d7f\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,18 +283,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/24112693-f32d-45c1-b74a-0b2d53e3b8da?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/226a2a94-d81c-4971-a513-d5bc5d90ee3f?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2369' + - '2338' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:06 GMT + - Fri, 19 Mar 2021 10:36:56 GMT expires: - '-1' pragma: @@ -314,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9dd70e26-9bec-43f6-8837-bbf2a36cba22 + - 8c6f167f-3f31-481e-9f53-f2c605d2063e x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -334,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/24112693-f32d-45c1-b74a-0b2d53e3b8da?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/226a2a94-d81c-4971-a513-d5bc5d90ee3f?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -348,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:09 GMT + - Fri, 19 Mar 2021 10:37:00 GMT expires: - '-1' pragma: @@ -365,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2e05518-57fb-444a-a418-d90644eab474 + - f0a0f128-94ec-40da-ae6a-6b3e8d2ecf2b status: code: 200 message: OK @@ -383,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"dca32ff2-9e25-4e1f-be29-916f05cf2822\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\"\ + ,\r\n \"etag\": \"W/\\\"9dbbe595-9011-4dd5-9449-41320d5c561a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4c31dffe-e018-46b6-b370-f4e96e163360\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"dc263284-969c-4c9a-b208-099decb50744\"\ ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"dca32ff2-9e25-4e1f-be29-916f05cf2822\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9dbbe595-9011-4dd5-9449-41320d5c561a\\\"\"\ ,\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_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"dca32ff2-9e25-4e1f-be29-916f05cf2822\\\ + ,\r\n \"etag\": \"W/\\\"9dbbe595-9011-4dd5-9449-41320d5c561a\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -413,18 +410,18 @@ interactions: \ \"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}" + : false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2371' + - '2340' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:09 GMT + - Fri, 19 Mar 2021 10:37:00 GMT etag: - - W/"dca32ff2-9e25-4e1f-be29-916f05cf2822" + - W/"9dbbe595-9011-4dd5-9449-41320d5c561a" expires: - '-1' pragma: @@ -441,12 +438,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99670f27-1a63-4308-95c7-8f37b7663001 + - 67feb624-da07-4060-98c2-67c4ba40ab2a status: code: 200 message: OK - request: - body: '{"location": "eastus2euap"}' + body: '{"location": "southcentralusstage", "properties": {"encryption": {}}}' headers: Accept: - application/json @@ -457,42 +454,35 @@ interactions: Connection: - keep-alive Content-Length: - - '27' + - '69' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T09%3A04%3A16.0470661Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A37%3A09.395833Z''\"","location":"southcentralusstage","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cef6dcf6-09d4-4686-bcfd-0e713552785c?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b1e53589-b071-4a68-b386-8bd4743a4a7f?api-version=2020-12-01 cache-control: - no-cache content-length: - - '422' + - '445' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:16 GMT + - Fri, 19 Mar 2021 10:37:10 GMT etag: - - W/"datetime'2021-01-07T09%3A04%3A16.0470661Z'" + - W/"datetime'2021-03-19T10%3A37%3A09.395833Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -500,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -510,7 +500,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -520,30 +510,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cef6dcf6-09d4-4686-bcfd-0e713552785c?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b1e53589-b071-4a68-b386-8bd4743a4a7f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cef6dcf6-09d4-4686-bcfd-0e713552785c","name":"cef6dcf6-09d4-4686-bcfd-0e713552785c","status":"Succeeded","startTime":"2021-01-07T09:04:15.9914633Z","endTime":"2021-01-07T09:04:16.1164542Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b1e53589-b071-4a68-b386-8bd4743a4a7f","name":"b1e53589-b071-4a68-b386-8bd4743a4a7f","status":"Succeeded","startTime":"2021-03-19T10:37:09.4052608Z","endTime":"2021-03-19T10:37:09.4702767Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '580' + - '588' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:49 GMT + - Fri, 19 Mar 2021 10:37: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: @@ -563,7 +548,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -573,32 +558,27 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-01-07T09%3A04%3A16.111112Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A37%3A09.4681527Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '422' + - '447' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:49 GMT + - Fri, 19 Mar 2021 10:37:40 GMT etag: - - W/"datetime'2021-01-07T09%3A04%3A16.111112Z'" + - W/"datetime'2021-03-19T10%3A37%3A09.4681527Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -615,8 +595,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"size": 4398046511104, "serviceLevel": - "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, + "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -627,42 +607,35 @@ interactions: Connection: - keep-alive Content-Length: - - '93' + - '101' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-01-07T09%3A04%3A55.6765387Z''\"","location":"eastus2euap","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-03-19T10%3A37%3A49.323545Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: - access-control-expose-headers: - - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/33347172-390c-4a58-9b2d-57e69421808c?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aa27dedc-b172-4989-a54f-2c124cdfb940?api-version=2020-12-01 cache-control: - no-cache content-length: - - '603' + - '610' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:04:56 GMT + - Fri, 19 Mar 2021 10:37:49 GMT etag: - - W/"datetime'2021-01-07T09%3A04%3A55.6765387Z'" + - W/"datetime'2021-03-19T10%3A37%3A49.323545Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -670,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -680,7 +653,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -690,30 +663,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/33347172-390c-4a58-9b2d-57e69421808c?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aa27dedc-b172-4989-a54f-2c124cdfb940?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/33347172-390c-4a58-9b2d-57e69421808c","name":"33347172-390c-4a58-9b2d-57e69421808c","status":"Succeeded","startTime":"2021-01-07T09:04:55.6148197Z","endTime":"2021-01-07T09:04:55.8589609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aa27dedc-b172-4989-a54f-2c124cdfb940","name":"aa27dedc-b172-4989-a54f-2c124cdfb940","status":"Succeeded","startTime":"2021-03-19T10:37:49.3343338Z","endTime":"2021-03-19T10:37:49.6888361Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '619' + - '627' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:05:27 GMT + - Fri, 19 Mar 2021 10:38:20 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -733,7 +701,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -743,32 +711,27 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-01-07T09%3A04%3A55.8496636Z''\"","location":"eastus2euap","properties":{"poolId":"fecd4d2c-6b70-7115-54fa-fcd1f713935f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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''2021-03-19T10%3A37%3A49.6856345Z''\"","location":"southcentralusstage","properties":{"poolId":"608a4c5d-1e7c-07c8-9a0f-58aa7ecad264","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '699' + - '707' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:05:28 GMT + - Fri, 19 Mar 2021 10:38:20 GMT etag: - - W/"datetime'2021-01-07T09%3A04%3A55.8496636Z'" + - W/"datetime'2021-03-19T10%3A37%3A49.6856345Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -785,7 +748,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"creationToken": "cli-vol-000004", + body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' headers: Accept: @@ -797,42 +760,35 @@ interactions: Connection: - keep-alive Content-Length: - - '366' + - '374' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T09%3A05%3A34.9597634Z''\"","location":"eastus2euap","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A38%3A30.7486951Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_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/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 cache-control: - no-cache content-length: - - '883' + - '891' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:05:36 GMT + - Fri, 19 Mar 2021 10:38:32 GMT etag: - - W/"datetime'2021-01-07T09%3A05%3A34.9597634Z'" + - W/"datetime'2021-03-19T10%3A38%3A30.7486951Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -840,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -850,7 +806,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -860,30 +816,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:06:06 GMT + - Fri, 19 Mar 2021 10:39:01 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -903,7 +854,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,30 +864,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:06:37 GMT + - Fri, 19 Mar 2021 10:39:32 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -956,7 +902,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -966,30 +912,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:07:08 GMT + - Fri, 19 Mar 2021 10:40:02 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1009,7 +950,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1019,30 +960,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:07:38 GMT + - Fri, 19 Mar 2021 10:40: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: @@ -1062,7 +998,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1072,30 +1008,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:08:09 GMT + - Fri, 19 Mar 2021 10:41:03 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1115,7 +1046,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1125,30 +1056,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:08:40 GMT + - Fri, 19 Mar 2021 10:41:33 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1168,7 +1094,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1178,30 +1104,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:09:11 GMT + - Fri, 19 Mar 2021 10:42: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: @@ -1221,7 +1142,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1231,30 +1152,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Creating","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '641' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:09:41 GMT + - Fri, 19 Mar 2021 10:42: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: @@ -1274,7 +1190,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1284,30 +1200,25 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3a89daaf-9b42-4b76-8441-af9f027e35a0","name":"3a89daaf-9b42-4b76-8441-af9f027e35a0","status":"Succeeded","startTime":"2021-01-07T09:05:34.7928562Z","endTime":"2021-01-07T09:09:58.9910178Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '652' + - '649' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:10:12 GMT + - Fri, 19 Mar 2021 10:43: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: @@ -1327,7 +1238,199 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:43:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:44:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Creating","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:44:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9999062-1495-485e-ba4e-00fe551b7025","name":"a9999062-1495-485e-ba4e-00fe551b7025","status":"Succeeded","startTime":"2021-03-19T10:38:30.7602987Z","endTime":"2021-03-19T10:44:46.0963224Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:45:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1337,32 +1440,27 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-01-07T09%3A09%3A58.9874741Z''\"","location":"eastus2euap","properties":{"mountTargets":[{"mountTargetId":"6a3af418-adfe-ffc8-5e75-742b09e75c26","fileSystemId":"6a3af418-adfe-ffc8-5e75-742b09e75c26","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"6a3af418-adfe-ffc8-5e75-742b09e75c26","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_bc16d76a","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A44%3A46.0923041Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"mountTargetId":"47dcbf15-966e-37f2-148f-2ac5a3642be8","fileSystemId":"47dcbf15-966e-37f2-148f-2ac5a3642be8","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"47dcbf15-966e-37f2-148f-2ac5a3642be8","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8dd45edb0b9011eaa2e56e734b166c7d_a101b81e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: - - '1772' + - '1807' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:10:12 GMT + - Fri, 19 Mar 2021 10:45:06 GMT etag: - - W/"datetime'2021-01-07T09%3A09%3A58.9874741Z'" + - W/"datetime'2021-03-19T10%3A44%3A46.0923041Z'" expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -1392,18 +1490,13 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.15.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2020-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"b519b6f1-1ab6-11eb-b21f-863486e19f06"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: @@ -1411,13 +1504,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jan 2021 09:10:14 GMT + - Fri, 19 Mar 2021 10:45: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: 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 77116b6b7c2..4ac4218dd31 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"11b6839d-d1bd-41e5-ab89-6b761bb69fa2\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4b547a28-5ecc-426f-b00f-44e30a75feaf\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9ce64270-d134-4015-ab73-5e1273bbbe8b\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f69698a6-3edb-4023-8771-e5ea598fa6ac\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eabe06f2-e000-4677-bc46-b626725a7cda?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a87377c8-f23a-443f-abdc-67d1790da752?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:24 GMT + - Fri, 19 Mar 2021 11:42:24 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c36b71f-0516-4dbc-ade5-21c31eb18dfc + - 386d5985-93c0-4c87-b4fb-51fba2f86b79 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eabe06f2-e000-4677-bc46-b626725a7cda?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a87377c8-f23a-443f-abdc-67d1790da752?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:27 GMT + - Fri, 19 Mar 2021 11:42:27 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d3a5542-5f99-444e-bfe1-990b56022fa8 + - de9563d8-b9c7-4739-ac8d-9d6ad5050a23 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"4fd95c95-7e8b-43cd-8bdd-3d2e497a1989\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"03338c02-d08d-457a-a81d-1d7e7acdb561\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9ce64270-d134-4015-ab73-5e1273bbbe8b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f69698a6-3edb-4023-8771-e5ea598fa6ac\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:28 GMT + - Fri, 19 Mar 2021 11:42:27 GMT etag: - - W/"4fd95c95-7e8b-43cd-8bdd-3d2e497a1989" + - W/"03338c02-d08d-457a-a81d-1d7e7acdb561" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd1054b4-621b-42ca-a6a5-66dd7afb33d2 + - 404749c1-d81b-47b6-9e1f-3c32708961e1 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"4fd95c95-7e8b-43cd-8bdd-3d2e497a1989\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"03338c02-d08d-457a-a81d-1d7e7acdb561\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9ce64270-d134-4015-ab73-5e1273bbbe8b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f69698a6-3edb-4023-8771-e5ea598fa6ac\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:29 GMT + - Fri, 19 Mar 2021 11:42:29 GMT etag: - - W/"4fd95c95-7e8b-43cd-8bdd-3d2e497a1989" + - W/"03338c02-d08d-457a-a81d-1d7e7acdb561" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed5c0e12-0e69-4230-86aa-567959de4027 + - d7db54f3-db8c-4704-8d66-ae658c98bc35 status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"f206960c-afd7-4840-aa64-c181b449f611\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"57811028-9a19-4054-9e9d-ba28251de3da\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9ce64270-d134-4015-ab73-5e1273bbbe8b\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f69698a6-3edb-4023-8771-e5ea598fa6ac\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"f206960c-afd7-4840-aa64-c181b449f611\\\"\"\ + ,\r\n \"etag\": \"W/\\\"57811028-9a19-4054-9e9d-ba28251de3da\\\"\"\ ,\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/\\\"f206960c-afd7-4840-aa64-c181b449f611\\\ + ,\r\n \"etag\": \"W/\\\"57811028-9a19-4054-9e9d-ba28251de3da\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/21b2349c-6e4a-4f10-9edc-22b368ed31ff?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/06e1c4b9-93e5-4250-82ba-f83688fffb9f?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:30 GMT + - Fri, 19 Mar 2021 11:42:30 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 198a827c-12fb-418a-aff4-f8d81969d302 + - a56b7dc1-6153-4716-94d3-8c8b4a50de06 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/21b2349c-6e4a-4f10-9edc-22b368ed31ff?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/06e1c4b9-93e5-4250-82ba-f83688fffb9f?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:34 GMT + - Fri, 19 Mar 2021 11:42:33 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dba9d476-43db-4cad-b533-bf6d8475e43f + - b16bd53d-7ea2-423d-a6fd-e659d3515ae8 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\"\ - ,\r\n \"etag\": \"W/\\\"da91ae87-0470-4d58-8093-d2c284f75693\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"320b057e-ecc5-4d5a-aa18-d1d124c6e790\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9ce64270-d134-4015-ab73-5e1273bbbe8b\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f69698a6-3edb-4023-8771-e5ea598fa6ac\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"da91ae87-0470-4d58-8093-d2c284f75693\\\"\"\ + ,\r\n \"etag\": \"W/\\\"320b057e-ecc5-4d5a-aa18-d1d124c6e790\\\"\"\ ,\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/\\\"da91ae87-0470-4d58-8093-d2c284f75693\\\ + ,\r\n \"etag\": \"W/\\\"320b057e-ecc5-4d5a-aa18-d1d124c6e790\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:34 GMT + - Fri, 19 Mar 2021 11:42:33 GMT etag: - - W/"da91ae87-0470-4d58-8093-d2c284f75693" + - W/"320b057e-ecc5-4d5a-aa18-d1d124c6e790" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a86bce2-d724-410f-97cd-981bfe595f45 + - 40d2b406-1fdc-45e9-8b1b-add658540311 status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A39%3A42.4985225Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A42%3A40.3229343Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7134e7bb-add3-4d26-bbc7-b11da8db501c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c792536e-9ad5-4865-99ba-9437f85152b7?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:39:43 GMT + - Fri, 19 Mar 2021 11:42:41 GMT etag: - - W/"datetime'2021-03-02T10%3A39%3A42.4985225Z'" + - W/"datetime'2021-03-19T11%3A42%3A40.3229343Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7134e7bb-add3-4d26-bbc7-b11da8db501c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c792536e-9ad5-4865-99ba-9437f85152b7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7134e7bb-add3-4d26-bbc7-b11da8db501c","name":"7134e7bb-add3-4d26-bbc7-b11da8db501c","status":"Succeeded","startTime":"2021-03-02T10:39:42.3850977Z","endTime":"2021-03-02T10:39:42.6051147Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c792536e-9ad5-4865-99ba-9437f85152b7","name":"c792536e-9ad5-4865-99ba-9437f85152b7","status":"Succeeded","startTime":"2021-03-19T11:42:40.2791965Z","endTime":"2021-03-19T11:42:40.400156Z","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' + - '574' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:40:14 GMT + - Fri, 19 Mar 2021 11:43:11 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A39%3A42.5935893Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T11%3A42%3A40.3949865Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:40:15 GMT + - Fri, 19 Mar 2021 11:43:11 GMT etag: - - W/"datetime'2021-03-02T10%3A39%3A42.5935893Z'" + - W/"datetime'2021-03-19T11%3A42%3A40.3949865Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '116' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A40%3A22.6078741Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A43%3A19.0345132Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8077e19-b95d-45f4-895a-a81944629929?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f425e6aa-3a7e-41d6-9dd8-5957815b9164?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:40:23 GMT + - Fri, 19 Mar 2021 11:43:21 GMT etag: - - W/"datetime'2021-03-02T10%3A40%3A22.6078741Z'" + - W/"datetime'2021-03-19T11%3A43%3A19.0345132Z'" expires: - '-1' pragma: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8077e19-b95d-45f4-895a-a81944629929?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f425e6aa-3a7e-41d6-9dd8-5957815b9164?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c8077e19-b95d-45f4-895a-a81944629929","name":"c8077e19-b95d-45f4-895a-a81944629929","status":"Succeeded","startTime":"2021-03-02T10:40:22.5518098Z","endTime":"2021-03-02T10:40:22.7966315Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f425e6aa-3a7e-41d6-9dd8-5957815b9164","name":"f425e6aa-3a7e-41d6-9dd8-5957815b9164","status":"Succeeded","startTime":"2021-03-19T11:43:18.9958405Z","endTime":"2021-03-19T11:43:19.2480637Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:40:54 GMT + - Fri, 19 Mar 2021 11:43:51 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A40%3A22.7870003Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"poolId":"76d39589-85ca-1f30-318b-ca3258665f0f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A43%3A19.2416595Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"poolId":"9a4796c4-90bf-2a43-33f5-c540ba6b0c8c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:40:56 GMT + - Fri, 19 Mar 2021 11:43:51 GMT etag: - - W/"datetime'2021-03-02T10%3A40%3A22.7870003Z'" + - W/"datetime'2021-03-19T11%3A43%3A19.2416595Z'" expires: - '-1' pragma: @@ -797,25 +787,22 @@ interactions: Content-Length: - '422' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A41%3A03.4547463Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A43%3A59.5703885Z''\"","location":"eastus","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/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -823,9 +810,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:41:04 GMT + - Fri, 19 Mar 2021 11:44:00 GMT etag: - - W/"datetime'2021-03-02T10%3A41%3A03.4547463Z'" + - W/"datetime'2021-03-19T11%3A43%3A59.5703885Z'" expires: - '-1' pragma: @@ -849,7 +836,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -860,13 +847,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -877,7 +863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:41:41 GMT + - Fri, 19 Mar 2021 11:44:30 GMT expires: - '-1' pragma: @@ -903,7 +889,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -914,13 +900,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -931,7 +916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:42:12 GMT + - Fri, 19 Mar 2021 11:45:01 GMT expires: - '-1' pragma: @@ -957,7 +942,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -968,13 +953,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -985,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:42:43 GMT + - Fri, 19 Mar 2021 11:45:31 GMT expires: - '-1' pragma: @@ -1011,7 +995,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1022,13 +1006,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1039,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:43:13 GMT + - Fri, 19 Mar 2021 11:46:01 GMT expires: - '-1' pragma: @@ -1065,7 +1048,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1076,13 +1059,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1093,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:43:44 GMT + - Fri, 19 Mar 2021 11:46:32 GMT expires: - '-1' pragma: @@ -1119,7 +1101,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1130,13 +1112,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Creating","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1147,7 +1128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:44:15 GMT + - Fri, 19 Mar 2021 11:47:02 GMT expires: - '-1' pragma: @@ -1173,7 +1154,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1184,13 +1165,65 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","name":"f837f4bc-bddf-4a11-ab0b-aa90c4c1cfb3","status":"Succeeded","startTime":"2021-03-02T10:41:03.4111961Z","endTime":"2021-03-02T10:44:28.3724483Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Creating","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 11:47: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/bd90b8b5-2f54-4268-ab0e-97fb550acd39","name":"bd90b8b5-2f54-4268-ab0e-97fb550acd39","status":"Succeeded","startTime":"2021-03-19T11:43:59.5300824Z","endTime":"2021-03-19T11:47:39.0045556Z","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 @@ -1201,7 +1234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:44:46 GMT + - Fri, 19 Mar 2021 11:48:03 GMT expires: - '-1' pragma: @@ -1227,7 +1260,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1238,26 +1271,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --tags --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A44%3A28.3625831Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"d028432d-b499-2061-9481-ce235e08d482","fileSystemId":"d028432d-b499-2061-9481-ce235e08d482","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d028432d-b499-2061-9481-ce235e08d482","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2427d534","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T11%3A47%3A38.9976724Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","fileSystemId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_b0519ff2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1839' + - '1859' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:44:47 GMT + - Fri, 19 Mar 2021 11:48:03 GMT etag: - - W/"datetime'2021-03-02T10%3A44%3A28.3625831Z'" + - W/"datetime'2021-03-19T11%3A47%3A38.9976724Z'" expires: - '-1' pragma: @@ -1295,35 +1327,32 @@ interactions: Content-Length: - '422' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2020-12-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''2021-03-02T10%3A44%3A53.313221Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/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''2021-03-19T11%3A48%3A10.2569477Z''\"","location":"eastus","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/eastus/operationResults/196b7b2c-0deb-49d3-a278-9c13ac9e223b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d9d85a96-66d1-4632-b913-29589b714bca?api-version=2020-12-01 cache-control: - no-cache content-length: - - '933' + - '934' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:44:54 GMT + - Fri, 19 Mar 2021 11:48:11 GMT etag: - - W/"datetime'2021-03-02T10%3A44%3A53.313221Z'" + - W/"datetime'2021-03-19T11%3A48%3A10.2569477Z'" expires: - '-1' pragma: @@ -1337,7 +1366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -1347,7 +1376,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1358,13 +1387,12 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/196b7b2c-0deb-49d3-a278-9c13ac9e223b?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d9d85a96-66d1-4632-b913-29589b714bca?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/196b7b2c-0deb-49d3-a278-9c13ac9e223b","name":"196b7b2c-0deb-49d3-a278-9c13ac9e223b","status":"Succeeded","startTime":"2021-03-02T10:44:53.2512214Z","endTime":"2021-03-02T10:45:11.0857756Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d9d85a96-66d1-4632-b913-29589b714bca","name":"d9d85a96-66d1-4632-b913-29589b714bca","status":"Succeeded","startTime":"2021-03-19T11:48:10.2187302Z","endTime":"2021-03-19T11:48:25.1162209Z","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 @@ -1375,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:45:27 GMT + - Fri, 19 Mar 2021 11:48:41 GMT expires: - '-1' pragma: @@ -1401,7 +1429,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1412,26 +1440,25 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2020-12-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''2021-03-02T10%3A45%3A11.0767782Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2427d534","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-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''2021-03-19T11%3A48%3A25.1095246Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"0a2cf924-e832-f393-1f64-4939b3864441","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_b0519ff2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1839' + - '1859' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:45:28 GMT + - Fri, 19 Mar 2021 11:48:41 GMT etag: - - W/"datetime'2021-03-02T10%3A45%3A11.0767782Z'" + - W/"datetime'2021-03-19T11%3A48%3A25.1095246Z'" expires: - '-1' pragma: @@ -1467,26 +1494,23 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A45%3A11.0767782Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2427d534","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}},{"id":"/subscriptions/00000000-0000-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''2021-03-02T10%3A44%3A28.3625831Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"d028432d-b499-2061-9481-ce235e08d482","fileSystemId":"d028432d-b499-2061-9481-ce235e08d482","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d028432d-b499-2061-9481-ce235e08d482","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2427d534","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' + 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''2021-03-19T11%3A47%3A38.9976724Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","fileSystemId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"b468e9af-a8d4-7466-bad1-c286bb75d99f","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_b0519ff2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}},{"id":"/subscriptions/00000000-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''2021-03-19T11%3A48%3A25.1095246Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"0a2cf924-e832-f393-1f64-4939b3864441","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_b0519ff2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '3691' + - '3731' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:45:29 GMT + - Fri, 19 Mar 2021 11:48:43 GMT expires: - '-1' pragma: @@ -1512,7 +1536,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1524,12 +1548,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-01 response: body: string: '' @@ -1537,17 +1558,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6ed66325-c89d-492d-976d-eada7cab5fe6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7914a874-8fba-43d0-b074-dd68833643df?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 10:45:31 GMT + - Fri, 19 Mar 2021 11:48:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6ed66325-c89d-492d-976d-eada7cab5fe6?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7914a874-8fba-43d0-b074-dd68833643df?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1569,7 +1590,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1579,13 +1600,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6ed66325-c89d-492d-976d-eada7cab5fe6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7914a874-8fba-43d0-b074-dd68833643df?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6ed66325-c89d-492d-976d-eada7cab5fe6","name":"6ed66325-c89d-492d-976d-eada7cab5fe6","status":"Succeeded","startTime":"2021-03-02T10:45:32.6101142Z","endTime":"2021-03-02T10:45:41.4808881Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/7914a874-8fba-43d0-b074-dd68833643df","name":"7914a874-8fba-43d0-b074-dd68833643df","status":"Succeeded","startTime":"2021-03-19T11:48:47.5103348Z","endTime":"2021-03-19T11:48:56.1687414Z","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 @@ -1596,7 +1616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:03 GMT + - Fri, 19 Mar 2021 11:49:17 GMT expires: - '-1' pragma: @@ -1632,26 +1652,23 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A45%3A11.0767782Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"d2a8d231-9283-0418-4566-6ed3ea48a75d","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_2427d534","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' + 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''2021-03-19T11%3A48%3A25.1095246Z''\"","location":"eastus","tags":{"Tag1":"Value1"},"properties":{"mountTargets":[{"mountTargetId":"0a2cf924-e832-f393-1f64-4939b3864441","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0a2cf924-e832-f393-1f64-4939b3864441","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_b0519ff2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1851' + - '1871' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:46:05 GMT + - Fri, 19 Mar 2021 11:49:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_non_default_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_non_default_export_policy.yaml index 017f7b20f43..f77d396cbec 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_non_default_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_non_default_export_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,22 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '131' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"f4806788-704e-4c94-b8fc-f7ca17db8a0a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7decd222-922c-4064-850f-973284e859a6\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"002e0013-6ad8-44ee-b45b-f1af7d07301e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f5f42940-e7ed-46a6-a0d1-b8815bce56fb\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,15 +36,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ad275864-fa90-4756-818a-c6563112f2c5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1fe23d71-7897-45dd-ab56-414588513fef?api-version=2020-11-01 cache-control: - no-cache content-length: - - '770' + - '778' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:17 GMT + - Fri, 19 Mar 2021 13:44:12 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49d71a0c-f069-4f8a-832d-aa772b0ffbc5 + - 126dafee-ec7e-435a-97c1-b810240a5129 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ad275864-fa90-4756-818a-c6563112f2c5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1fe23d71-7897-45dd-ab56-414588513fef?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:21 GMT + - Fri, 19 Mar 2021 13:44:15 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 482b908d-fd70-4264-98e7-53a3d670d7e9 + - 10e326c5-d20d-4b87-9232-2c8691651a88 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"c7e4739c-44ba-4d58-bad4-9e16b076b844\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0c54c5a9-8950-4439-b747-ae14ee41b10d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"002e0013-6ad8-44ee-b45b-f1af7d07301e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f5f42940-e7ed-46a6-a0d1-b8815bce56fb\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -144,13 +144,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:21 GMT + - Fri, 19 Mar 2021 13:44:15 GMT etag: - - W/"c7e4739c-44ba-4d58-bad4-9e16b076b844" + - W/"0c54c5a9-8950-4439-b747-ae14ee41b10d" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eef4a6da-accf-4a36-8d2f-dc92975fbbd7 + - 8441fe71-9f29-4538-b52d-4846fe86c5b3 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"c7e4739c-44ba-4d58-bad4-9e16b076b844\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0c54c5a9-8950-4439-b747-ae14ee41b10d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"002e0013-6ad8-44ee-b45b-f1af7d07301e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f5f42940-e7ed-46a6-a0d1-b8815bce56fb\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -203,13 +203,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:22 GMT + - Fri, 19 Mar 2021 13:44:16 GMT etag: - - W/"c7e4739c-44ba-4d58-bad4-9e16b076b844" + - W/"0c54c5a9-8950-4439-b747-ae14ee41b10d" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2477ea44-a564-4915-a84e-b03e1ba0cbe9 + - d88a050e-75cf-48f6-85f2-1058880221dc status: code: 200 message: OK @@ -247,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '603' + - '611' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"b9d13797-732c-4464-959a-37834603946a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3b2c720f-ed67-4b46-86f6-5ad242a6b0f9\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"002e0013-6ad8-44ee-b45b-f1af7d07301e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f5f42940-e7ed-46a6-a0d1-b8815bce56fb\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"b9d13797-732c-4464-959a-37834603946a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3b2c720f-ed67-4b46-86f6-5ad242a6b0f9\\\"\"\ ,\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/\\\"b9d13797-732c-4464-959a-37834603946a\\\ + ,\r\n \"etag\": \"W/\\\"3b2c720f-ed67-4b46-86f6-5ad242a6b0f9\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,15 +286,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2ae64d7-781d-44de-8928-2b8ce114c4ec?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/afd5b084-a78f-4f41-aca2-4e2df33240d5?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2356' + - '2364' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:23 GMT + - Fri, 19 Mar 2021 13:44:17 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f34309c8-ea02-47ff-9323-833235317ff8 + - f012cb16-c9a2-4612-862a-40ebf34f7925 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c2ae64d7-781d-44de-8928-2b8ce114c4ec?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/afd5b084-a78f-4f41-aca2-4e2df33240d5?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:27 GMT + - Fri, 19 Mar 2021 13:44:21 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 21695a39-fa9b-4989-8aa9-4fbcc4db13e4 + - cff8a2c3-2a93-4f45-87e4-94ce131adb65 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"2fb1070b-0bf6-4295-a930-f30b6818046b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"387655a7-cfa0-4b40-bfa6-95d675be7085\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"002e0013-6ad8-44ee-b45b-f1af7d07301e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f5f42940-e7ed-46a6-a0d1-b8815bce56fb\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"2fb1070b-0bf6-4295-a930-f30b6818046b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"387655a7-cfa0-4b40-bfa6-95d675be7085\\\"\"\ ,\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/\\\"2fb1070b-0bf6-4295-a930-f30b6818046b\\\ + ,\r\n \"etag\": \"W/\\\"387655a7-cfa0-4b40-bfa6-95d675be7085\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -415,13 +415,13 @@ interactions: cache-control: - no-cache content-length: - - '2358' + - '2366' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:27 GMT + - Fri, 19 Mar 2021 13:44:21 GMT etag: - - W/"2fb1070b-0bf6-4295-a930-f30b6818046b" + - W/"387655a7-cfa0-4b40-bfa6-95d675be7085" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c70e6a82-a8fe-4ba5-8191-19c8ca7a55d3 + - b56c4861-adc9-440a-a571-2d45e3935645 status: code: 200 message: OK @@ -454,36 +454,33 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '64' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A10%3A33.8759241Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T13%3A44%3A28.2166828Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f9e63965-f7a3-4412-8fc3-8a11e10855b3?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4ec9858b-2eb3-431f-8c9f-de4dd4638c42?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '441' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:10:34 GMT + - Fri, 19 Mar 2021 13:44:28 GMT etag: - - W/"datetime'2021-03-02T11%3A10%3A33.8759241Z'" + - W/"datetime'2021-03-19T13%3A44%3A28.2166828Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f9e63965-f7a3-4412-8fc3-8a11e10855b3?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4ec9858b-2eb3-431f-8c9f-de4dd4638c42?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/f9e63965-f7a3-4412-8fc3-8a11e10855b3","name":"f9e63965-f7a3-4412-8fc3-8a11e10855b3","status":"Succeeded","startTime":"2021-03-02T11:10:33.8343735Z","endTime":"2021-03-02T11:10:33.9494019Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/4ec9858b-2eb3-431f-8c9f-de4dd4638c42","name":"4ec9858b-2eb3-431f-8c9f-de4dd4638c42","status":"Succeeded","startTime":"2021-03-19T13:44:28.1557006Z","endTime":"2021-03-19T13:44:28.2973304Z","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' + - '583' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:06 GMT + - Fri, 19 Mar 2021 13:44:58 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,26 +566,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A10%3A33.9419716Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T13%3A44%3A28.2897379Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '434' + - '442' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:06 GMT + - Fri, 19 Mar 2021 13:44:59 GMT etag: - - W/"datetime'2021-03-02T11%3A10%3A33.9419716Z'" + - W/"datetime'2021-03-19T13%3A44%3A28.2897379Z'" expires: - '-1' pragma: @@ -624,36 +619,33 @@ interactions: Connection: - keep-alive Content-Length: - - '89' + - '97' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A11%3A15.1100827Z''\"","location":"eastus","properties":{"serviceLevel":"Standard","size":8796093022208,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A45%3A06.593684Z''\"","location":"eastus","properties":{"serviceLevel":"Standard","size":8796093022208,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/225f8dd2-41e1-4ff2-9b03-60cbdac032a0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6c724ec8-5019-4b24-890c-dde1c125eb63?api-version=2020-12-01 cache-control: - no-cache content-length: - - '599' + - '606' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:16 GMT + - Fri, 19 Mar 2021 13:45:07 GMT etag: - - W/"datetime'2021-03-02T11%3A11%3A15.1100827Z'" + - W/"datetime'2021-03-19T13%3A45%3A06.593684Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,24 +679,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/225f8dd2-41e1-4ff2-9b03-60cbdac032a0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6c724ec8-5019-4b24-890c-dde1c125eb63?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/225f8dd2-41e1-4ff2-9b03-60cbdac032a0","name":"225f8dd2-41e1-4ff2-9b03-60cbdac032a0","status":"Succeeded","startTime":"2021-03-02T11:11:15.0651709Z","endTime":"2021-03-02T11:11:15.3101573Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/6c724ec8-5019-4b24-890c-dde1c125eb63","name":"6c724ec8-5019-4b24-890c-dde1c125eb63","status":"Succeeded","startTime":"2021-03-19T13:45:06.5385924Z","endTime":"2021-03-19T13:45:06.7783094Z","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' + - '622' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:48 GMT + - Fri, 19 Mar 2021 13:45:38 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,26 +731,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A11%3A15.3012177Z''\"","location":"eastus","properties":{"poolId":"e36b0e5a-2fbd-d1d8-c8ec-b6ae431706d5","serviceLevel":"Standard","size":8796093022208,"qosType":"Auto","totalThroughputMibps":131.072,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T13%3A45%3A06.7718193Z''\"","location":"eastus","properties":{"poolId":"64095911-dff5-8e68-5443-3d6c9a9154ab","serviceLevel":"Standard","size":8796093022208,"qosType":"Auto","totalThroughputMibps":131.072,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '695' + - '703' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:49 GMT + - Fri, 19 Mar 2021 13:45:38 GMT etag: - - W/"datetime'2021-03-02T11%3A11%3A15.3012177Z'" + - W/"datetime'2021-03-19T13%3A45%3A06.7718193Z'" expires: - '-1' pragma: @@ -794,37 +784,34 @@ interactions: Connection: - keep-alive Content-Length: - - '395' + - '403' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A11%3A55.8068674Z''\"","location":"eastus","properties":{"serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T13%3A45%3A44.7855399Z''\"","location":"eastus","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/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 cache-control: - no-cache content-length: - - '910' + - '918' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:11:56 GMT + - Fri, 19 Mar 2021 13:45:44 GMT etag: - - W/"datetime'2021-03-02T11%3A11%3A55.8068674Z'" + - W/"datetime'2021-03-19T13%3A45%3A44.7855399Z'" expires: - '-1' pragma: @@ -848,61 +835,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 11:12: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: @@ -913,24 +846,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Creating","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:12:58 GMT + - Fri, 19 Mar 2021 13:46:16 GMT expires: - '-1' pragma: @@ -956,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,24 +899,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Creating","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:13:30 GMT + - Fri, 19 Mar 2021 13:46:46 GMT expires: - '-1' pragma: @@ -1010,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,24 +952,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Creating","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:14:00 GMT + - Fri, 19 Mar 2021 13:47:16 GMT expires: - '-1' pragma: @@ -1064,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,24 +1005,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Creating","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:14:30 GMT + - Fri, 19 Mar 2021 13:47:46 GMT expires: - '-1' pragma: @@ -1118,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,24 +1058,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Creating","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Creating","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:15:02 GMT + - Fri, 19 Mar 2021 13:48:16 GMT expires: - '-1' pragma: @@ -1172,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,24 +1111,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/822dd1bc-78a6-4ce7-a844-82a627328740","name":"822dd1bc-78a6-4ce7-a844-82a627328740","status":"Succeeded","startTime":"2021-03-02T11:11:55.7676545Z","endTime":"2021-03-02T11:15:21.5149404Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1c011f6b-665a-4771-8df4-75c30261da75","name":"1c011f6b-665a-4771-8df4-75c30261da75","status":"Succeeded","startTime":"2021-03-19T13:45:44.7374386Z","endTime":"2021-03-19T13:48:33.3157742Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:15:33 GMT + - Fri, 19 Mar 2021 13:48:46 GMT expires: - '-1' pragma: @@ -1226,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,26 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A15%3A21.5073394Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10997fdf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T13%3A48%3A33.3041337Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"31186b41-693c-8330-4270-2aea0a2db842","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_fcaec8fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1815' + - '1843' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:15:34 GMT + - Fri, 19 Mar 2021 13:48:47 GMT etag: - - W/"datetime'2021-03-02T11%3A15%3A21.5073394Z'" + - W/"datetime'2021-03-19T13%3A48%3A33.3041337Z'" expires: - '-1' pragma: @@ -1293,28 +1219,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A15%3A21.5073394Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10997fdf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T13%3A48%3A33.3041337Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"31186b41-693c-8330-4270-2aea0a2db842","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_fcaec8fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1815' + - '1843' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:15:36 GMT + - Fri, 19 Mar 2021 13:48:49 GMT etag: - - W/"datetime'2021-03-02T11%3A15%3A21.5073394Z'" + - W/"datetime'2021-03-19T13%3A48%3A33.3041337Z'" expires: - '-1' pragma: @@ -1359,39 +1282,36 @@ interactions: Content-Length: - '786' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A15%3A40.0344395Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Patching","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10997fdf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T13%3A48%3A51.8341384Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"31186b41-693c-8330-4270-2aea0a2db842","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Patching","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_fcaec8fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/62390e42-ad3a-44cc-acd4-44a7d942d68a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1e955349-cb5d-4b02-af2d-aca4612cbbde?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1814' + - '1842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:15:39 GMT + - Fri, 19 Mar 2021 13:48:51 GMT etag: - - W/"datetime'2021-03-02T11%3A15%3A40.0344395Z'" + - W/"datetime'2021-03-19T13%3A48%3A51.8341384Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/62390e42-ad3a-44cc-acd4-44a7d942d68a?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1e955349-cb5d-4b02-af2d-aca4612cbbde?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1403,7 +1323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -1413,7 +1333,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1424,24 +1344,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/62390e42-ad3a-44cc-acd4-44a7d942d68a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1e955349-cb5d-4b02-af2d-aca4612cbbde?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/62390e42-ad3a-44cc-acd4-44a7d942d68a","name":"62390e42-ad3a-44cc-acd4-44a7d942d68a","status":"Succeeded","startTime":"2021-03-02T11:15:39.9820898Z","endTime":"2021-03-02T11:15:48.5517276Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/1e955349-cb5d-4b02-af2d-aca4612cbbde","name":"1e955349-cb5d-4b02-af2d-aca4612cbbde","status":"Succeeded","startTime":"2021-03-19T13:48:51.7877267Z","endTime":"2021-03-19T13:48:54.4192651Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:16:11 GMT + - Fri, 19 Mar 2021 13:49:22 GMT expires: - '-1' pragma: @@ -1467,7 +1386,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1478,26 +1397,25 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A15%3A48.5454587Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"538d17ae-760c-6e8f-24a9-4cfa7454b363","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_10997fdf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T13%3A48%3A54.4140857Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"31186b41-693c-8330-4270-2aea0a2db842","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":3.2,"provisioningState":"Succeeded","fileSystemId":"31186b41-693c-8330-4270-2aea0a2db842","name":"cli-vol-000004","serviceLevel":"Standard","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":3,"unixReadOnly":true,"unixReadWrite":false,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"1.2.3.0/24","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true},{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_fcaec8fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2128' + - '2156' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:16:12 GMT + - Fri, 19 Mar 2021 13:49:22 GMT etag: - - W/"datetime'2021-03-02T11%3A15%3A48.5454587Z'" + - W/"datetime'2021-03-19T13%3A48%3A54.4140857Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml index 1be35bc10f7..ca87d44cb4a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"f013a561-c54a-47f9-af21-78755c06ffaf\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"a96d1604-94d4-483a-826b-38aff45ad53d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9f41ccd3-0146-46a1-9020-9005fdeae1ac\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"06e27031-d123-4f7a-b687-5d731e1add10\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/21f3cc6b-03af-464b-87c9-ab2fa11310fe?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/009b8b44-57ab-4c6e-b894-09a3d0124cc1?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:38 GMT + - Fri, 19 Mar 2021 11:23:02 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08ae0b9e-f13b-46f7-9c27-ab73298c6b3f + - cba378eb-2d5b-441a-a36b-d2c09ac1cc19 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/21f3cc6b-03af-464b-87c9-ab2fa11310fe?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/009b8b44-57ab-4c6e-b894-09a3d0124cc1?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:41 GMT + - Fri, 19 Mar 2021 11:23:06 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8bd9613e-556e-4caf-a837-74eab5bcaffa + - 014f5f59-8966-4802-8480-d748239ab6ed status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"0dfc6d92-1921-4f8e-a789-ae0cdf48bf27\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"84b52e3f-cf78-42ea-b4bf-a9403505b352\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f41ccd3-0146-46a1-9020-9005fdeae1ac\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"06e27031-d123-4f7a-b687-5d731e1add10\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:41 GMT + - Fri, 19 Mar 2021 11:23:06 GMT etag: - - W/"0dfc6d92-1921-4f8e-a789-ae0cdf48bf27" + - W/"84b52e3f-cf78-42ea-b4bf-a9403505b352" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c3ba862-621c-4a6d-8beb-363d2e79bfad + - a42f863b-9c04-4518-9171-5e3fb9367536 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"0dfc6d92-1921-4f8e-a789-ae0cdf48bf27\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"84b52e3f-cf78-42ea-b4bf-a9403505b352\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f41ccd3-0146-46a1-9020-9005fdeae1ac\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"06e27031-d123-4f7a-b687-5d731e1add10\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:44 GMT + - Fri, 19 Mar 2021 11:23:07 GMT etag: - - W/"0dfc6d92-1921-4f8e-a789-ae0cdf48bf27" + - W/"84b52e3f-cf78-42ea-b4bf-a9403505b352" expires: - '-1' pragma: @@ -226,12 +226,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae04f72a-6759-440e-abf3-2ae6f2cdf194 + - 26156688-0dfa-450e-84ce-bb292d8b1082 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009", "location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000010", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"caf43b03-c3fd-4d51-bc16-10b655b5cab4\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"70a0bdec-db19-4cb8-b0c6-147bd257eb30\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"9f41ccd3-0146-46a1-9020-9005fdeae1ac\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"06e27031-d123-4f7a-b687-5d731e1add10\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"caf43b03-c3fd-4d51-bc16-10b655b5cab4\\\"\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"70a0bdec-db19-4cb8-b0c6-147bd257eb30\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"caf43b03-c3fd-4d51-bc16-10b655b5cab4\\\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"70a0bdec-db19-4cb8-b0c6-147bd257eb30\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7117f745-0d56-4496-a4cb-aacf660a82d8?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0046c12a-1486-4804-a7c6-c2abab6fbe9e?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:45 GMT + - Fri, 19 Mar 2021 11:23:09 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a079754-30c2-490a-831a-d471adc6e05d + - 9b32cfa1-a7ba-484f-8b5a-bb96dc61cc40 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7117f745-0d56-4496-a4cb-aacf660a82d8?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0046c12a-1486-4804-a7c6-c2abab6fbe9e?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:48 GMT + - Fri, 19 Mar 2021 11:23:12 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 042072b6-1169-42ac-a3df-241a429f0237 + - 29475177-f450-4dfb-9abb-6b55ccc488fb status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ - ,\r\n \"etag\": \"W/\\\"fbde475b-4bd5-4271-8847-64c1f7c19407\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009\"\ + ,\r\n \"etag\": \"W/\\\"e0d823f8-7b47-4af6-aea4-6ee403222015\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"9f41ccd3-0146-46a1-9020-9005fdeae1ac\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"06e27031-d123-4f7a-b687-5d731e1add10\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000010\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\"\ - ,\r\n \"etag\": \"W/\\\"fbde475b-4bd5-4271-8847-64c1f7c19407\\\"\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\"\ + ,\r\n \"etag\": \"W/\\\"e0d823f8-7b47-4af6-aea4-6ee403222015\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"fbde475b-4bd5-4271-8847-64c1f7c19407\\\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"e0d823f8-7b47-4af6-aea4-6ee403222015\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:48 GMT + - Fri, 19 Mar 2021 11:23:12 GMT etag: - - W/"fbde475b-4bd5-4271-8847-64c1f7c19407" + - W/"e0d823f8-7b47-4af6-aea4-6ee403222015" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3c86abd-e628-4923-9816-b78bbe686677 + - 58e05532-a836-48a1-aa91-0d215db9e09e status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A34%3A55.8392804Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A23%3A18.8155604Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab532ade-15d2-4faa-9df3-ea90583a9fd7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ec2dd23d-0b32-414b-9d2c-ca87401d6b85?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:56 GMT + - Fri, 19 Mar 2021 11:23:19 GMT etag: - - W/"datetime'2021-03-02T11%3A34%3A55.8392804Z'" + - W/"datetime'2021-03-19T11%3A23%3A18.8155604Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab532ade-15d2-4faa-9df3-ea90583a9fd7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ec2dd23d-0b32-414b-9d2c-ca87401d6b85?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ab532ade-15d2-4faa-9df3-ea90583a9fd7","name":"ab532ade-15d2-4faa-9df3-ea90583a9fd7","status":"Succeeded","startTime":"2021-03-02T11:34:55.7960075Z","endTime":"2021-03-02T11:34:55.923071Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ec2dd23d-0b32-414b-9d2c-ca87401d6b85","name":"ec2dd23d-0b32-414b-9d2c-ca87401d6b85","status":"Succeeded","startTime":"2021-03-19T11:23:18.7771682Z","endTime":"2021-03-19T11:23:18.8856447Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '574' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:35:27 GMT + - Fri, 19 Mar 2021 11:23:50 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A34%3A55.9133326Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A23%3A18.8806065Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:35:28 GMT + - Fri, 19 Mar 2021 11:23:50 GMT etag: - - W/"datetime'2021-03-02T11%3A34%3A55.9133326Z'" + - W/"datetime'2021-03-19T11%3A23%3A18.8806065Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A35%3A36.2808861Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A23%3A57.6001907Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cb7394e8-7d98-4f9b-a5a3-1a49193d806c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa20d2b9-62ba-4142-8ef3-47f8c17ce80f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:35:37 GMT + - Fri, 19 Mar 2021 11:23:58 GMT etag: - - W/"datetime'2021-03-02T11%3A35%3A36.2808861Z'" + - W/"datetime'2021-03-19T11%3A23%3A57.6001907Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cb7394e8-7d98-4f9b-a5a3-1a49193d806c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa20d2b9-62ba-4142-8ef3-47f8c17ce80f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/cb7394e8-7d98-4f9b-a5a3-1a49193d806c","name":"cb7394e8-7d98-4f9b-a5a3-1a49193d806c","status":"Succeeded","startTime":"2021-03-02T11:35:36.2118226Z","endTime":"2021-03-02T11:35:36.8821054Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/fa20d2b9-62ba-4142-8ef3-47f8c17ce80f","name":"fa20d2b9-62ba-4142-8ef3-47f8c17ce80f","status":"Succeeded","startTime":"2021-03-19T11:23:57.5547039Z","endTime":"2021-03-19T11:23:59.2062056Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005"}}' headers: access-control-expose-headers: - Request-Context @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:36:08 GMT + - Fri, 19 Mar 2021 11:24:28 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A35%3A36.8743049Z''\"","location":"eastus","properties":{"poolId":"227e41c3-42eb-0477-85cf-de99c3662cf0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005","name":"cli-acc-000003/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A23%3A59.1993292Z''\"","location":"eastus","properties":{"poolId":"ce1576c4-9f15-d7be-6781-de725f79ec29","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:36:09 GMT + - Fri, 19 Mar 2021 11:24:29 GMT etag: - - W/"datetime'2021-03-02T11%3A35%3A36.8743049Z'" + - W/"datetime'2021-03-19T11%3A23%3A59.1993292Z'" expires: - '-1' pragma: @@ -783,7 +773,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"creationToken": "cli-vol-000007", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010"}}' headers: Accept: - application/json @@ -796,35 +786,32 @@ interactions: Content-Length: - '394' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A36%3A17.174809Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A24%3A36.3017598Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 cache-control: - no-cache content-length: - - '908' + - '909' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:36:17 GMT + - Fri, 19 Mar 2021 11:24:36 GMT etag: - - W/"datetime'2021-03-02T11%3A36%3A17.174809Z'" + - W/"datetime'2021-03-19T11%3A24%3A36.3017598Z'" expires: - '-1' pragma: @@ -848,7 +835,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -876,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:36:49 GMT + - Fri, 19 Mar 2021 11:25:07 GMT expires: - '-1' pragma: @@ -902,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -913,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:37:19 GMT + - Fri, 19 Mar 2021 11:25:37 GMT expires: - '-1' pragma: @@ -956,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:37:49 GMT + - Fri, 19 Mar 2021 11:26:08 GMT expires: - '-1' pragma: @@ -1010,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:38:21 GMT + - Fri, 19 Mar 2021 11:26:38 GMT expires: - '-1' pragma: @@ -1064,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:38:51 GMT + - Fri, 19 Mar 2021 11:27:08 GMT expires: - '-1' pragma: @@ -1118,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +1111,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Creating","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1146,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:39:22 GMT + - Fri, 19 Mar 2021 11:27:38 GMT expires: - '-1' pragma: @@ -1172,7 +1153,60 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Creating","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '636' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 11:28: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: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,13 +1217,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/23bcec83-6732-4ec0-928b-d0ca6810b6b2","name":"23bcec83-6732-4ec0-928b-d0ca6810b6b2","status":"Succeeded","startTime":"2021-03-02T11:36:17.1037622Z","endTime":"2021-03-02T11:39:40.1621797Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/d121c0ad-2b4b-43ab-9037-cb9dc7423d19","name":"d121c0ad-2b4b-43ab-9037-cb9dc7423d19","status":"Succeeded","startTime":"2021-03-19T11:24:36.2604541Z","endTime":"2021-03-19T11:28:15.5491932Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -1200,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:39:52 GMT + - Fri, 19 Mar 2021 11:28:39 GMT expires: - '-1' pragma: @@ -1226,7 +1259,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,26 +1270,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A39%3A40.1553783Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"0fc5b957-813a-457b-4ffc-fb3729ea2385","fileSystemId":"0fc5b957-813a-457b-4ffc-fb3729ea2385","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"0fc5b957-813a-457b-4ffc-fb3729ea2385","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_3555d5b8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A28%3A15.5415631Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","fileSystemId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_9db3855c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1834' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:39:53 GMT + - Fri, 19 Mar 2021 11:28:40 GMT etag: - - W/"datetime'2021-03-02T11%3A39%3A40.1553783Z'" + - W/"datetime'2021-03-19T11%3A28%3A15.5415631Z'" expires: - '-1' pragma: @@ -1297,16 +1329,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"59cc2afb-088e-4830-a759-21f39ab91a5e\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"17235f69-81f7-462a-a83d-273646b00875\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"4a055bf9-2828-4a29-8850-00a71575b43e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4babb758-4cbb-48bd-9bef-640e27d46927\"\ ,\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\":\ @@ -1315,7 +1347,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a1dd0017-327d-4f16-9f05-0fdc3c3484ef?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/db66ff78-355e-4e32-9907-169cc5e91dec?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1323,7 +1355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:01 GMT + - Fri, 19 Mar 2021 11:28:50 GMT expires: - '-1' pragma: @@ -1336,9 +1368,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2441a0eb-6d2e-4394-9a66-50220c16cf8b + - 4f334bc6-2b78-4213-8f9d-738724bfc451 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -1356,9 +1388,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a1dd0017-327d-4f16-9f05-0fdc3c3484ef?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/db66ff78-355e-4e32-9907-169cc5e91dec?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1370,7 +1402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:04 GMT + - Fri, 19 Mar 2021 11:28:53 GMT expires: - '-1' pragma: @@ -1387,7 +1419,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c25b3547-6e0a-4317-ade7-8f4f69235bac + - 49c1428d-50e7-4891-b92d-8cf9c87ce6ad status: code: 200 message: OK @@ -1405,16 +1437,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"67508cda-8b85-4cc8-9203-05b2ffa69234\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"2fd97823-fb33-4675-8b77-70d0fe30a9a2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4a055bf9-2828-4a29-8850-00a71575b43e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4babb758-4cbb-48bd-9bef-640e27d46927\"\ ,\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\":\ @@ -1427,9 +1459,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:04 GMT + - Fri, 19 Mar 2021 11:28:53 GMT etag: - - W/"67508cda-8b85-4cc8-9203-05b2ffa69234" + - W/"2fd97823-fb33-4675-8b77-70d0fe30a9a2" expires: - '-1' pragma: @@ -1446,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da00c6f9-b7a1-4128-89c4-9d5457ac324a + - b2dce092-b46f-4589-80d2-bb6a95fae935 status: code: 200 message: OK @@ -1464,16 +1496,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"67508cda-8b85-4cc8-9203-05b2ffa69234\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"2fd97823-fb33-4675-8b77-70d0fe30a9a2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4a055bf9-2828-4a29-8850-00a71575b43e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4babb758-4cbb-48bd-9bef-640e27d46927\"\ ,\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\":\ @@ -1486,9 +1518,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:05 GMT + - Fri, 19 Mar 2021 11:28:54 GMT etag: - - W/"67508cda-8b85-4cc8-9203-05b2ffa69234" + - W/"2fd97823-fb33-4675-8b77-70d0fe30a9a2" expires: - '-1' pragma: @@ -1505,12 +1537,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1cbe9350-84ef-4a19-878d-838d3ae6e916 + - 5cda3651-3f8a-4b6c-b5a1-1c771b9eea47 status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011", "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.1.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000012", "properties": {"addressPrefix": "10.1.0.0/24", "delegations": [{"name": "0", @@ -1532,26 +1564,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"503df2e8-6ddc-44b3-bf77-93c6d9620798\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"0cc97a92-6a9f-4153-9bfd-816d2176fefb\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"4a055bf9-2828-4a29-8850-00a71575b43e\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"4babb758-4cbb-48bd-9bef-640e27d46927\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\"\ - ,\r\n \"etag\": \"W/\\\"503df2e8-6ddc-44b3-bf77-93c6d9620798\\\"\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\"\ + ,\r\n \"etag\": \"W/\\\"0cc97a92-6a9f-4153-9bfd-816d2176fefb\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"503df2e8-6ddc-44b3-bf77-93c6d9620798\\\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"0cc97a92-6a9f-4153-9bfd-816d2176fefb\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -1565,7 +1597,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c95528c2-375a-4af2-9f9d-223b4c884d70?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1537f42-3a04-4851-ab73-0c75f6fa6c94?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1573,7 +1605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:07 GMT + - Fri, 19 Mar 2021 11:28:55 GMT expires: - '-1' pragma: @@ -1590,9 +1622,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd417a8b-c622-4994-8257-ee55eec16e1a + - 2fde08e9-ab3c-4ce7-88cf-6aaa7c99d16e x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1610,9 +1642,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c95528c2-375a-4af2-9f9d-223b4c884d70?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1537f42-3a04-4851-ab73-0c75f6fa6c94?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1624,7 +1656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:10 GMT + - Fri, 19 Mar 2021 11:28:59 GMT expires: - '-1' pragma: @@ -1641,7 +1673,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c063e3cd-0b4f-41db-bab4-00481ee3101d + - 730b9cba-8c6b-492a-bd6a-ce4e5a718a2f status: code: 200 message: OK @@ -1659,26 +1691,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ - ,\r\n \"etag\": \"W/\\\"c90f3f46-7555-4da2-b5f6-324942f9c01c\\\"\",\r\n \ + string: "{\r\n \"name\": \"cli-vnet-000011\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011\"\ + ,\r\n \"etag\": \"W/\\\"b2b6490c-5eb1-4938-8282-ab30472d7075\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"4a055bf9-2828-4a29-8850-00a71575b43e\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"4babb758-4cbb-48bd-9bef-640e27d46927\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.1.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000012\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\"\ - ,\r\n \"etag\": \"W/\\\"c90f3f46-7555-4da2-b5f6-324942f9c01c\\\"\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\"\ + ,\r\n \"etag\": \"W/\\\"b2b6490c-5eb1-4938-8282-ab30472d7075\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\"\ : [\r\n {\r\n \"name\": \"0\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"c90f3f46-7555-4da2-b5f6-324942f9c01c\\\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\"\ + ,\r\n \"etag\": \"W/\\\"b2b6490c-5eb1-4938-8282-ab30472d7075\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -1698,9 +1730,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:10 GMT + - Fri, 19 Mar 2021 11:28:59 GMT etag: - - W/"c90f3f46-7555-4da2-b5f6-324942f9c01c" + - W/"b2b6490c-5eb1-4938-8282-ab30472d7075" expires: - '-1' pragma: @@ -1717,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 883bdd5e-e59f-4ddc-b8f9-128b1821344b + - 3d0db53c-8d7e-417c-ac59-84f68a80cfad status: code: 200 message: OK @@ -1735,24 +1767,21 @@ interactions: Content-Length: - '64' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A40%3A17.2527299Z''\"","location":"southcentralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A29%3A05.8426319Z''\"","location":"southcentralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/33eb5297-4610-4f05-ade3-0942728bc645?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/db42714f-cb93-42c4-a280-25d41622f6a9?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1760,9 +1789,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:17 GMT + - Fri, 19 Mar 2021 11:29:07 GMT etag: - - W/"datetime'2021-03-02T11%3A40%3A17.2527299Z'" + - W/"datetime'2021-03-19T11%3A29%3A05.8426319Z'" expires: - '-1' pragma: @@ -1776,7 +1805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1786,7 +1815,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1796,24 +1825,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/33eb5297-4610-4f05-ade3-0942728bc645?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/db42714f-cb93-42c4-a280-25d41622f6a9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/33eb5297-4610-4f05-ade3-0942728bc645","name":"33eb5297-4610-4f05-ade3-0942728bc645","status":"Succeeded","startTime":"2021-03-02T11:40:17.198387Z","endTime":"2021-03-02T11:40:17.3283541Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/db42714f-cb93-42c4-a280-25d41622f6a9","name":"db42714f-cb93-42c4-a280-25d41622f6a9","status":"Succeeded","startTime":"2021-03-19T11:29:05.7981322Z","endTime":"2021-03-19T11:29:05.9216476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '582' + - '583' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:49 GMT + - Fri, 19 Mar 2021 11:29:36 GMT expires: - '-1' pragma: @@ -1839,7 +1867,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1849,13 +1877,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A40%3A17.3197771Z''\"","location":"southcentralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A29%3A05.9126846Z''\"","location":"southcentralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -1866,9 +1893,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:49 GMT + - Fri, 19 Mar 2021 11:29:36 GMT etag: - - W/"datetime'2021-03-02T11%3A40%3A17.3197771Z'" + - W/"datetime'2021-03-19T11%3A29%3A05.9126846Z'" expires: - '-1' pragma: @@ -1905,24 +1932,21 @@ interactions: Content-Length: - '96' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A40%3A57.8353347Z''\"","location":"southcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A29%3A45.6757259Z''\"","location":"southcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2cb3894f-e70e-40c0-801a-f6bcf68b208e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b02ca6a5-50fc-4c53-81cd-383768ab7346?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1930,9 +1954,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:40:59 GMT + - Fri, 19 Mar 2021 11:29:46 GMT etag: - - W/"datetime'2021-03-02T11%3A40%3A57.8353347Z'" + - W/"datetime'2021-03-19T11%3A29%3A45.6757259Z'" expires: - '-1' pragma: @@ -1946,7 +1970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1956,7 +1980,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1966,13 +1990,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2cb3894f-e70e-40c0-801a-f6bcf68b208e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b02ca6a5-50fc-4c53-81cd-383768ab7346?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2cb3894f-e70e-40c0-801a-f6bcf68b208e","name":"2cb3894f-e70e-40c0-801a-f6bcf68b208e","status":"Succeeded","startTime":"2021-03-02T11:40:57.7936086Z","endTime":"2021-03-02T11:40:58.7687934Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b02ca6a5-50fc-4c53-81cd-383768ab7346","name":"b02ca6a5-50fc-4c53-81cd-383768ab7346","status":"Succeeded","startTime":"2021-03-19T11:29:45.6079425Z","endTime":"2021-03-19T11:29:45.9039772Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006"}}' headers: access-control-expose-headers: - Request-Context @@ -1983,7 +2006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:41:30 GMT + - Fri, 19 Mar 2021 11:30:16 GMT expires: - '-1' pragma: @@ -2009,7 +2032,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2019,13 +2042,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A40%3A58.7459764Z''\"","location":"southcentralus","properties":{"poolId":"c57c31e5-b15f-fe7a-a304-dddf87606e45","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A29%3A45.8988948Z''\"","location":"southcentralus","properties":{"poolId":"ae8c8a70-2ba8-e641-a20b-c62cbf3b4a85","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -2036,9 +2058,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:41:31 GMT + - Fri, 19 Mar 2021 11:30:17 GMT etag: - - W/"datetime'2021-03-02T11%3A40%3A58.7459764Z'" + - W/"datetime'2021-03-19T11%3A29%3A45.8988948Z'" expires: - '-1' pragma: @@ -2062,9 +2084,9 @@ interactions: message: OK - request: body: '{"location": "southcentralus", "properties": {"creationToken": "cli-vol-000008", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012", "volumeType": "DataProtection", "dataProtection": {"replication": {"endpointType": - "dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}}}' + "dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}}}' headers: Accept: - application/json @@ -2077,26 +2099,23 @@ interactions: Content-Length: - '843' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A41%3A37.8855654Z''\"","location":"southcentralus","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A30%3A24.8013768Z''\"","location":"southcentralus","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2104,9 +2123,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:41:38 GMT + - Fri, 19 Mar 2021 11:30:25 GMT etag: - - W/"datetime'2021-03-02T11%3A41%3A37.8855654Z'" + - W/"datetime'2021-03-19T11%3A30%3A24.8013768Z'" expires: - '-1' pragma: @@ -2120,7 +2139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -2130,7 +2149,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2142,24 +2161,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:42:10 GMT + - Fri, 19 Mar 2021 11:30:56 GMT expires: - '-1' pragma: @@ -2185,7 +2203,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2197,24 +2215,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:42:40 GMT + - Fri, 19 Mar 2021 11:31:25 GMT expires: - '-1' pragma: @@ -2240,7 +2257,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2252,24 +2269,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:43:11 GMT + - Fri, 19 Mar 2021 11:31:56 GMT expires: - '-1' pragma: @@ -2295,7 +2311,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2307,24 +2323,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:43:42 GMT + - Fri, 19 Mar 2021 11:32:26 GMT expires: - '-1' pragma: @@ -2350,7 +2365,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2362,24 +2377,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:44:12 GMT + - Fri, 19 Mar 2021 11:32:56 GMT expires: - '-1' pragma: @@ -2405,7 +2419,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2417,24 +2431,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Creating","startTime":"2021-03-02T11:41:37.846702Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Creating","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '643' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:44:43 GMT + - Fri, 19 Mar 2021 11:33:27 GMT expires: - '-1' pragma: @@ -2460,7 +2473,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2472,24 +2485,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/52d1a76f-87c2-4446-b400-365b6630aec9","name":"52d1a76f-87c2-4446-b400-365b6630aec9","status":"Succeeded","startTime":"2021-03-02T11:41:37.846702Z","endTime":"2021-03-02T11:44:54.0278579Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9ae0686-3c80-46e9-9604-63af225e6648","name":"d9ae0686-3c80-46e9-9604-63af225e6648","status":"Succeeded","startTime":"2021-03-19T11:30:24.7702858Z","endTime":"2021-03-19T11:33:41.0464416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:45:14 GMT + - Fri, 19 Mar 2021 11:33:58 GMT expires: - '-1' pragma: @@ -2515,7 +2527,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2527,26 +2539,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A44%3A54.0208055Z''\"","location":"southcentralus","properties":{"mountTargets":[{"mountTargetId":"156d243e-f502-f303-4998-83217abd5a9f","fileSystemId":"156d243e-f502-f303-4998-83217abd5a9f","ipAddress":"10.1.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"fileSystemId":"156d243e-f502-f303-4998-83217abd5a9f","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_d7776e29","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A33%3A41.0407029Z''\"","location":"southcentralus","properties":{"mountTargets":[{"mountTargetId":"5a564905-6681-408c-99be-ee560082c9a2","fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","ipAddress":"10.1.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}},"fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2180' + - '2200' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:45:15 GMT + - Fri, 19 Mar 2021 11:33:58 GMT etag: - - W/"datetime'2021-03-02T11%3A44%3A54.0208055Z'" + - W/"datetime'2021-03-19T11%3A33%3A41.0407029Z'" expires: - '-1' pragma: @@ -2569,10 +2580,10 @@ interactions: code: 200 message: OK - request: - body: '{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}' + body: '{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2582,16 +2593,13 @@ interactions: Content-Length: - '311' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/authorizeReplication?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/authorizeReplication?api-version=2020-12-01 response: body: string: '' @@ -2599,17 +2607,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/403e0f05-ea5b-42f4-926f-d1186726bbc2?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c0e732f-2fbb-4f1e-ac3a-1e2570394e13?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 11:46:48 GMT + - Fri, 19 Mar 2021 11:35:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/403e0f05-ea5b-42f4-926f-d1186726bbc2?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c0e732f-2fbb-4f1e-ac3a-1e2570394e13?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2631,7 +2639,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2641,13 +2649,12 @@ interactions: ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/403e0f05-ea5b-42f4-926f-d1186726bbc2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c0e732f-2fbb-4f1e-ac3a-1e2570394e13?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/403e0f05-ea5b-42f4-926f-d1186726bbc2","name":"403e0f05-ea5b-42f4-926f-d1186726bbc2","status":"Succeeded","startTime":"2021-03-02T11:46:48.6609505Z","endTime":"2021-03-02T11:47:04.9807282Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c0e732f-2fbb-4f1e-ac3a-1e2570394e13","name":"9c0e732f-2fbb-4f1e-ac3a-1e2570394e13","status":"Succeeded","startTime":"2021-03-19T11:35:30.9506898Z","endTime":"2021-03-19T11:35:39.0063642Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007"}}' headers: access-control-expose-headers: - Request-Context @@ -2658,7 +2665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:47:19 GMT + - Fri, 19 Mar 2021 11:36:01 GMT expires: - '-1' pragma: @@ -2684,36 +2691,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication approve Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v --remote-volume-resource-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/9c0e732f-2fbb-4f1e-ac3a-1e2570394e13?api-version=2020-12-01&operationResultResponseType=Location response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A35%3A30.9810484Z''\"","location":"eastus","properties":{"dataProtection":{"replication":{"endPointType":"Src","replicationStatus":"","remotePath":{"externalHostName":"az-sat10-f01c01-bn125-sto","serverName":"svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","volumeName":"vol_cli_vol_wc75sj5irqy46inn_f62d34"},"remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","remoteVolumeRegion":"southcentralus"}},"provisioningState":"Succeeded","fileSystemId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","name":"cli-vol-000007","serviceLevel":"Premium","creationToken":"cli-vol-000007","ownerId":"5dc6d64f-3174-4a63-9285-4706ea222d29","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_9db3855c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","poolId":"ce1576c4-9f15-d7be-6781-de725f79ec29","mountTargets":[{"provisioningState":"","mountTargetId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","fileSystemId":"48d3887a-cc9c-6888-9272-39f7ff3ead81","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '111' + - '2973' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:47:42 GMT + - Fri, 19 Mar 2021 11:36:01 GMT expires: - '-1' pragma: @@ -2749,12 +2753,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' @@ -2768,7 +2769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:47:44 GMT + - Fri, 19 Mar 2021 11:36:23 GMT expires: - '-1' pragma: @@ -2804,12 +2805,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' @@ -2823,7 +2821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:48:46 GMT + - Fri, 19 Mar 2021 11:36:25 GMT expires: - '-1' pragma: @@ -2859,15 +2857,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17432","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -2878,7 +2873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:49:48 GMT + - Fri, 19 Mar 2021 11:37:27 GMT expires: - '-1' pragma: @@ -2901,41 +2896,44 @@ interactions: code: 200 message: OK - request: - body: null + body: '{}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication suspend Connection: - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d205b8fb-4a05-444e-bd52-a03cc31d9cb7?api-version=2020-12-01 cache-control: - no-cache content-length: - - '111' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 02 Mar 2021 11:50:49 GMT + - Fri, 19 Mar 2021 11:37:29 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d205b8fb-4a05-444e-bd52-a03cc31d9cb7?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -2944,51 +2942,46 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication suspend Connection: - keep-alive ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d205b8fb-4a05-444e-bd52-a03cc31d9cb7?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"20352","errorMessage":""}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d205b8fb-4a05-444e-bd52-a03cc31d9cb7","name":"d205b8fb-4a05-444e-bd52-a03cc31d9cb7","status":"Succeeded","startTime":"2021-03-19T11:37:29.5744752Z","endTime":"2021-03-19T11:37:35.9221892Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '111' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:51:51 GMT + - Fri, 19 Mar 2021 11:37:59 GMT expires: - '-1' pragma: @@ -3014,44 +3007,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - netappfiles volume replication suspend Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d205b8fb-4a05-444e-bd52-a03cc31d9cb7?api-version=2020-12-01&operationResultResponseType=Location response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A37%3A29.6294376Z''\"","location":"southcentralus","properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"a6ee6489-c18a-6d00-8256-a233fe933ba4","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Broken","remotePath":{"externalHostName":"az-sat10-f01c01-bn125-sto","serverName":"svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","volumeName":"vol_cli_vol_wc75sj5irqy46inn_f62d34"},"remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","remoteVolumeRegion":"eastus"}},"fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"296cf49e-4fd0-11e9-b860-ca0b30681545","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","poolId":"ae8c8a70-2ba8-e641-a20b-c62cbf3b4a85","mountTargets":[{"provisioningState":"","mountTargetId":"5a564905-6681-408c-99be-ee560082c9a2","fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"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/southcentralus/operationResults/3a775591-74e6-41e4-852a-bd982068a031?api-version=2020-11-01 cache-control: - no-cache content-length: - - '0' + - '3035' + content-type: + - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:51:54 GMT + - Fri, 19 Mar 2021 11:38:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3a775591-74e6-41e4-852a-bd982068a031?api-version=2020-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3060,15 +3044,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: - - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3077,30 +3063,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication suspend + - netappfiles volume replication status Connection: - keep-alive ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3a775591-74e6-41e4-852a-bd982068a031?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3a775591-74e6-41e4-852a-bd982068a031","name":"3a775591-74e6-41e4-852a-bd982068a031","status":"Succeeded","startTime":"2021-03-02T11:51:54.5395862Z","endTime":"2021-03-02T11:52:01.566146Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17432","errorMessage":""}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '109' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:52:26 GMT + - Fri, 19 Mar 2021 11:38:02 GMT expires: - '-1' pragma: @@ -3136,15 +3121,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17432","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -3155,7 +3137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:52:29 GMT + - Fri, 19 Mar 2021 11:38:03 GMT expires: - '-1' pragma: @@ -3181,38 +3163,39 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication status + - netappfiles volume replication resume Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/resyncReplication?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}' + string: '' headers: access-control-expose-headers: - Request-Context + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a0bae60d-6ff8-4478-8ec0-050059dc5741?api-version=2020-12-01 cache-control: - no-cache content-length: - - '109' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 02 Mar 2021 11:52:31 GMT + - Fri, 19 Mar 2021 11:38:05 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a0bae60d-6ff8-4478-8ec0-050059dc5741?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3221,57 +3204,48 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: 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/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/resyncReplication?api-version=2020-11-01 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a0bae60d-6ff8-4478-8ec0-050059dc5741?api-version=2020-12-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a0bae60d-6ff8-4478-8ec0-050059dc5741","name":"a0bae60d-6ff8-4478-8ec0-050059dc5741","status":"Succeeded","startTime":"2021-03-19T11:38:06.4147496Z","endTime":"2021-03-19T11:38:09.6234266Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/24fb5d3d-5f6c-4695-8b70-d97ec88ec9ad?api-version=2020-11-01 cache-control: - no-cache content-length: - - '0' + - '655' + content-type: + - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:52:33 GMT + - Fri, 19 Mar 2021 11:38:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/24fb5d3d-5f6c-4695-8b70-d97ec88ec9ad?api-version=2020-11-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3280,20 +3254,22 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3303,24 +3279,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/24fb5d3d-5f6c-4695-8b70-d97ec88ec9ad?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a0bae60d-6ff8-4478-8ec0-050059dc5741?api-version=2020-12-01&operationResultResponseType=Location response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/24fb5d3d-5f6c-4695-8b70-d97ec88ec9ad","name":"24fb5d3d-5f6c-4695-8b70-d97ec88ec9ad","status":"Succeeded","startTime":"2021-03-02T11:52:33.538776Z","endTime":"2021-03-02T11:52:36.6359123Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A38%3A06.4422519Z''\"","location":"southcentralus","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"a6ee6489-c18a-6d00-8256-a233fe933ba4","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Mirrored","remotePath":{"externalHostName":"az-sat10-f01c01-bn125-sto","serverName":"svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","volumeName":"vol_cli_vol_wc75sj5irqy46inn_f62d34"},"remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","remoteVolumeRegion":"eastus"}},"fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"296cf49e-4fd0-11e9-b860-ca0b30681545","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","poolId":"ae8c8a70-2ba8-e641-a20b-c62cbf3b4a85","mountTargets":[{"provisioningState":"","mountTargetId":"5a564905-6681-408c-99be-ee560082c9a2","fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '3070' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:53:07 GMT + - Fri, 19 Mar 2021 11:38:36 GMT expires: - '-1' pragma: @@ -3356,15 +3331,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"20352","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17432","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -3375,7 +3347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:53:29 GMT + - Fri, 19 Mar 2021 11:38:59 GMT expires: - '-1' pragma: @@ -3411,15 +3383,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"20352","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17432","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -3430,7 +3399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:53:31 GMT + - Fri, 19 Mar 2021 11:39:01 GMT expires: - '-1' pragma: @@ -3456,7 +3425,7 @@ interactions: body: '{"forceBreakReplication": true}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3466,16 +3435,13 @@ interactions: Content-Length: - '31' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -f User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/breakReplication?api-version=2020-12-01 response: body: string: '' @@ -3483,17 +3449,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/566c6126-db4f-4af5-8793-95725691529a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 11:53:32 GMT + - Fri, 19 Mar 2021 11:39:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/566c6126-db4f-4af5-8793-95725691529a?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3505,7 +3471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -3515,7 +3481,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3525,24 +3491,75 @@ interactions: ParameterSetName: - -g -a -p -v -f User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/566c6126-db4f-4af5-8793-95725691529a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/566c6126-db4f-4af5-8793-95725691529a","name":"566c6126-db4f-4af5-8793-95725691529a","status":"Succeeded","startTime":"2021-03-02T11:53:33.1725823Z","endTime":"2021-03-02T11:53:41.951973Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0","name":"0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0","status":"Succeeded","startTime":"2021-03-19T11:39:02.7517351Z","endTime":"2021-03-19T11:39:09.1832299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '654' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:54:05 GMT + - Fri, 19 Mar 2021 11:39:32 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume replication suspend + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -f + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0c8d2d36-2acc-4904-a6be-70ef2a7eb8b0?api-version=2020-12-01&operationResultResponseType=Location + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A39%3A02.7898301Z''\"","location":"southcentralus","properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"a6ee6489-c18a-6d00-8256-a233fe933ba4","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Broken","remotePath":{"externalHostName":"az-sat10-f01c01-bn125-sto","serverName":"svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","volumeName":"vol_cli_vol_wc75sj5irqy46inn_f62d34"},"remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007","remoteVolumeRegion":"eastus"}},"fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"296cf49e-4fd0-11e9-b860-ca0b30681545","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","poolId":"ae8c8a70-2ba8-e641-a20b-c62cbf3b4a85","mountTargets":[{"provisioningState":"","mountTargetId":"5a564905-6681-408c-99be-ee560082c9a2","fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '3035' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 11:39:32 GMT expires: - '-1' pragma: @@ -3578,15 +3595,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"23392","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20512","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -3597,7 +3611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:54:08 GMT + - Fri, 19 Mar 2021 11:39:35 GMT expires: - '-1' pragma: @@ -3633,15 +3647,12 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/replicationStatus?api-version=2020-12-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"23392","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20512","errorMessage":""}' headers: access-control-expose-headers: - Request-Context @@ -3652,7 +3663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:54:10 GMT + - Fri, 19 Mar 2021 11:39:37 GMT expires: - '-1' pragma: @@ -3678,7 +3689,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3690,12 +3701,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/deleteReplication?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008/deleteReplication?api-version=2020-12-01 response: body: string: '' @@ -3703,17 +3711,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 11:54:12 GMT + - Fri, 19 Mar 2021 11:39:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -3725,7 +3733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3735,7 +3743,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3745,24 +3753,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a","name":"d73bdc7c-1f21-4c0a-af98-8e40a009ab2a","status":"DeleteReplication","startTime":"2021-03-02T11:54:12.2665865Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4","name":"6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4","status":"Succeeded","startTime":"2021-03-19T11:39:39.0483435Z","endTime":"2021-03-19T11:40:08.3063624Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '653' + - '655' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:54:43 GMT + - Fri, 19 Mar 2021 11:40:08 GMT expires: - '-1' pragma: @@ -3788,7 +3795,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3798,24 +3805,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/6f2c9a68-db4b-4e1c-94ed-baf97db3f7a4?api-version=2020-12-01&operationResultResponseType=Location response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d73bdc7c-1f21-4c0a-af98-8e40a009ab2a","name":"d73bdc7c-1f21-4c0a-af98-8e40a009ab2a","status":"Succeeded","startTime":"2021-03-02T11:54:12.2665865Z","endTime":"2021-03-02T11:54:43.9351361Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappf_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","name":"cli-acc-000004/cli-pool-000006/cli-vol-000008","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A39%3A39.0802561Z''\"","location":"southcentralus","properties":{"volumeType":"","dataProtection":{},"fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","name":"cli-vol-000008","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"296cf49e-4fd0-11e9-b860-ca0b30681545","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_ea5f1bb8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000006/volumes/cli-vol-000008","poolId":"ae8c8a70-2ba8-e641-a20b-c62cbf3b4a85","mountTargets":[{"provisioningState":"","mountTargetId":"5a564905-6681-408c-99be-ee560082c9a2","fileSystemId":"5a564905-6681-408c-99be-ee560082c9a2","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '655' + - '2325' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:55:14 GMT + - Fri, 19 Mar 2021 11:40:09 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_backup_to_new_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_backup_to_new_volume.yaml index 5ac1d8601f9..bca16b54341 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_backup_to_new_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_backup_to_new_volume.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -37,7 +37,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7527c3fc-e866-44f3-aa97-88556bc71080?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7527c3fc-e866-44f3-aa97-88556bc71080?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7527c3fc-e866-44f3-aa97-88556bc71080?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/7527c3fc-e866-44f3-aa97-88556bc71080?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -258,7 +258,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -289,7 +289,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/029bffb7-b138-4aaa-ba9f-dd73c7cf2ca1?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/029bffb7-b138-4aaa-ba9f-dd73c7cf2ca1?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -336,7 +336,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/029bffb7-b138-4aaa-ba9f-dd73c7cf2ca1?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/029bffb7-b138-4aaa-ba9f-dd73c7cf2ca1?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -385,7 +385,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_revert_volume_from_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_revert_volume_from_snapshot.yaml index 36ae5b6d5bb..ce1a0da73b5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_revert_volume_from_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_revert_volume_from_snapshot.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"a5c3bf29-ea12-49e9-8ff5-a6cc7ec7758d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"aeffd76b-ce88-436c-8e59-159924773bd9\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"ce331694-f0c6-4d78-8061-5a93d6c63e78\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f38f3e0e-ed27-4673-be90-d440f18b7835\"\ ,\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ff3c7c37-b03a-45bd-9e67-bd0faace0f83?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8e1850ab-0f69-4756-93ec-905000e5a20d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:16 GMT + - Fri, 19 Mar 2021 10:14:02 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bb07b8e2-34b8-4ed3-bec6-f0c2c10b7960 + - 790d51f7-6cbd-4159-8d70-b43701d4a434 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ff3c7c37-b03a-45bd-9e67-bd0faace0f83?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8e1850ab-0f69-4756-93ec-905000e5a20d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:20 GMT + - Fri, 19 Mar 2021 10:14:05 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08566fa4-592c-43bc-b9e2-8613a0cac65c + - d71ca755-aa52-4d81-90ff-5da5a4f3ac0a status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"a4456415-94b4-47ad-abed-4f64eae0f6f8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"92a028e0-3ae1-4923-a1a2-afc909a386eb\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ce331694-f0c6-4d78-8061-5a93d6c63e78\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f38f3e0e-ed27-4673-be90-d440f18b7835\"\ ,\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:20 GMT + - Fri, 19 Mar 2021 10:14:06 GMT etag: - - W/"a4456415-94b4-47ad-abed-4f64eae0f6f8" + - W/"92a028e0-3ae1-4923-a1a2-afc909a386eb" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed9c586d-d9b9-48f3-a4f8-3b7cedcf65fb + - ade6d988-0df3-491e-8401-51342f40b6ed status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"a4456415-94b4-47ad-abed-4f64eae0f6f8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"92a028e0-3ae1-4923-a1a2-afc909a386eb\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ce331694-f0c6-4d78-8061-5a93d6c63e78\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f38f3e0e-ed27-4673-be90-d440f18b7835\"\ ,\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:21 GMT + - Fri, 19 Mar 2021 10:14:06 GMT etag: - - W/"a4456415-94b4-47ad-abed-4f64eae0f6f8" + - W/"92a028e0-3ae1-4923-a1a2-afc909a386eb" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dbf7a452-a010-4502-b153-bfff36049cab + - a4de421a-83ec-47f5-b28f-fc67746cee6e status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"1b164566-4f42-45b2-9a4e-f195a8c3d562\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"74fc58db-d70b-45c4-96f3-bbcd8be73e1d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"ce331694-f0c6-4d78-8061-5a93d6c63e78\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"f38f3e0e-ed27-4673-be90-d440f18b7835\"\ ,\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/\\\"1b164566-4f42-45b2-9a4e-f195a8c3d562\\\"\"\ + ,\r\n \"etag\": \"W/\\\"74fc58db-d70b-45c4-96f3-bbcd8be73e1d\\\"\"\ ,\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/\\\"1b164566-4f42-45b2-9a4e-f195a8c3d562\\\ + ,\r\n \"etag\": \"W/\\\"74fc58db-d70b-45c4-96f3-bbcd8be73e1d\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a37b81c-fa38-4c77-82c9-4ce44de77d02?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0924279-1d41-47ce-8297-338434904f8d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:23 GMT + - Fri, 19 Mar 2021 10:14:08 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc198f27-178b-44c4-b82c-dc4c5a64682c + - 33d67db1-47c9-4175-aed3-3a6984104d5e x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a37b81c-fa38-4c77-82c9-4ce44de77d02?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0924279-1d41-47ce-8297-338434904f8d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:26 GMT + - Fri, 19 Mar 2021 10:14:11 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b1d0bfe3-4ddf-4f4e-bbf5-fe2a831bd686 + - e49c3165-a7e0-4e15-b034-44ae2f5830b7 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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/\\\"29ef3d30-b9c8-430f-b5ef-f2511ccd95b7\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7f89b614-9855-4572-9ca9-9955dce63aaf\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"ce331694-f0c6-4d78-8061-5a93d6c63e78\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"f38f3e0e-ed27-4673-be90-d440f18b7835\"\ ,\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/\\\"29ef3d30-b9c8-430f-b5ef-f2511ccd95b7\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7f89b614-9855-4572-9ca9-9955dce63aaf\\\"\"\ ,\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/\\\"29ef3d30-b9c8-430f-b5ef-f2511ccd95b7\\\ + ,\r\n \"etag\": \"W/\\\"7f89b614-9855-4572-9ca9-9955dce63aaf\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:26 GMT + - Fri, 19 Mar 2021 10:14:11 GMT etag: - - W/"29ef3d30-b9c8-430f-b5ef-f2511ccd95b7" + - W/"7f89b614-9855-4572-9ca9-9955dce63aaf" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cf45cdb1-4c78-4e6b-bde6-44116d3ffd94 + - adf7992e-2238-45b4-9b75-3354b4e61a52 status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A33%3A33.5187747Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A14%3A18.9176189Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/e0c79a36-3bfb-4ea4-a113-79f6229d8fb5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/257bebf1-6634-43a7-9cc0-6a4dd5d56ecb?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:33:34 GMT + - Fri, 19 Mar 2021 10:14:20 GMT etag: - - W/"datetime'2021-03-02T09%3A33%3A33.5187747Z'" + - W/"datetime'2021-03-19T10%3A14%3A18.9176189Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0c79a36-3bfb-4ea4-a113-79f6229d8fb5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/257bebf1-6634-43a7-9cc0-6a4dd5d56ecb?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0c79a36-3bfb-4ea4-a113-79f6229d8fb5","name":"e0c79a36-3bfb-4ea4-a113-79f6229d8fb5","status":"Succeeded","startTime":"2021-03-02T09:33:33.4632491Z","endTime":"2021-03-02T09:33:33.6088299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/257bebf1-6634-43a7-9cc0-6a4dd5d56ecb","name":"257bebf1-6634-43a7-9cc0-6a4dd5d56ecb","status":"Succeeded","startTime":"2021-03-19T10:14:18.8756839Z","endTime":"2021-03-19T10:14:19.0015635Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:06 GMT + - Fri, 19 Mar 2021 10:14:50 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A33%3A33.5998329Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T10%3A14%3A18.9896702Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:07 GMT + - Fri, 19 Mar 2021 10:14:50 GMT etag: - - W/"datetime'2021-03-02T09%3A33%3A33.5998329Z'" + - W/"datetime'2021-03-19T10%3A14%3A18.9896702Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A34%3A16.0503128Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A14%3A59.6809037Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/4fe7a687-0e48-499e-821a-2381fd94b9b9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e745e10-2b97-4b3c-a360-1e998014034f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:16 GMT + - Fri, 19 Mar 2021 10:15:00 GMT etag: - - W/"datetime'2021-03-02T09%3A34%3A16.0503128Z'" + - W/"datetime'2021-03-19T10%3A14%3A59.6809037Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fe7a687-0e48-499e-821a-2381fd94b9b9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e745e10-2b97-4b3c-a360-1e998014034f?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fe7a687-0e48-499e-821a-2381fd94b9b9","name":"4fe7a687-0e48-499e-821a-2381fd94b9b9","status":"Succeeded","startTime":"2021-03-02T09:34:15.9951317Z","endTime":"2021-03-02T09:34:16.2748725Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e745e10-2b97-4b3c-a360-1e998014034f","name":"9e745e10-2b97-4b3c-a360-1e998014034f","status":"Succeeded","startTime":"2021-03-19T10:14:59.6252008Z","endTime":"2021-03-19T10:14:59.8311525Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:48 GMT + - Fri, 19 Mar 2021 10:15:31 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A34%3A16.2674685Z''\"","location":"westus2","properties":{"poolId":"c9825798-7b46-bea5-c21e-f1229847d0d6","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T10%3A14%3A59.8210043Z''\"","location":"westus2","properties":{"poolId":"103da7d7-6340-b822-f78a-663c4148e7c8","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:49 GMT + - Fri, 19 Mar 2021 10:15:31 GMT etag: - - W/"datetime'2021-03-02T09%3A34%3A16.2674685Z'" + - W/"datetime'2021-03-19T10%3A14%3A59.8210043Z'" expires: - '-1' pragma: @@ -796,25 +786,22 @@ interactions: Content-Length: - '377' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A34%3A56.9626888Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A15%3A39.0041554Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:34:58 GMT + - Fri, 19 Mar 2021 10:15:40 GMT etag: - - W/"datetime'2021-03-02T09%3A34%3A56.9626888Z'" + - W/"datetime'2021-03-19T10%3A15%3A39.0041554Z'" expires: - '-1' pragma: @@ -838,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -848,61 +835,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '625' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:35: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: @@ -913,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Creating","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -930,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:36:04 GMT + - Fri, 19 Mar 2021 10:16:09 GMT expires: - '-1' pragma: @@ -956,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -967,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Creating","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -984,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:36:35 GMT + - Fri, 19 Mar 2021 10:16:40 GMT expires: - '-1' pragma: @@ -1010,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1021,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Creating","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1038,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:37:06 GMT + - Fri, 19 Mar 2021 10:17:10 GMT expires: - '-1' pragma: @@ -1064,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1075,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Creating","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:37:37 GMT + - Fri, 19 Mar 2021 10:17:41 GMT expires: - '-1' pragma: @@ -1118,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Creating","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Creating","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1146,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:38:07 GMT + - Fri, 19 Mar 2021 10:18:11 GMT expires: - '-1' pragma: @@ -1172,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,24 +1111,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","name":"3bf7aa0d-e047-40d8-aee4-efb9c86f7ddd","status":"Succeeded","startTime":"2021-03-02T09:34:56.9035431Z","endTime":"2021-03-02T09:38:09.7938315Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","name":"6bb221f5-08bf-4764-bba0-9bce4ea8bcbd","status":"Succeeded","startTime":"2021-03-19T10:15:38.9640414Z","endTime":"2021-03-19T10:18:27.803499Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '636' + - '635' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:38:38 GMT + - Fri, 19 Mar 2021 10:18:41 GMT expires: - '-1' pragma: @@ -1226,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,26 +1164,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T09%3A38%3A09.7874999Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"4a3f7475-2c4f-ba38-9fa1-97dc89de90f2","fileSystemId":"4a3f7475-2c4f-ba38-9fa1-97dc89de90f2","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"4a3f7475-2c4f-ba38-9fa1-97dc89de90f2","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_21daa2d4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + 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''2021-03-19T10%3A18%3A27.7927273Z''\"","location":"westus2","properties":{"mountTargets":[{"mountTargetId":"590a0575-6102-9c00-8981-ec642fe0ebdb","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_cf78dbab","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1785' + - '1805' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:38:39 GMT + - Fri, 19 Mar 2021 10:18:41 GMT etag: - - W/"datetime'2021-03-02T09%3A38%3A09.7874999Z'" + - W/"datetime'2021-03-19T10%3A18%3A27.7927273Z'" expires: - '-1' pragma: @@ -1292,16 +1218,13 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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","name":"cli-sn-000005"}}' @@ -1309,7 +1232,7 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e527cd5-5c3b-4566-ba05-7f53ed0b03c5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/193c55ff-2726-40aa-9d5d-77a9308030e1?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1317,11 +1240,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:38:42 GMT + - Fri, 19 Mar 2021 10:18:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e527cd5-5c3b-4566-ba05-7f53ed0b03c5?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/193c55ff-2726-40aa-9d5d-77a9308030e1?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1333,7 +1256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -1343,7 +1266,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1353,13 +1276,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e527cd5-5c3b-4566-ba05-7f53ed0b03c5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/193c55ff-2726-40aa-9d5d-77a9308030e1?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e527cd5-5c3b-4566-ba05-7f53ed0b03c5","name":"4e527cd5-5c3b-4566-ba05-7f53ed0b03c5","status":"Succeeded","startTime":"2021-03-02T09:38:42.5838234Z","endTime":"2021-03-02T09:38:47.0405382Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/193c55ff-2726-40aa-9d5d-77a9308030e1","name":"193c55ff-2726-40aa-9d5d-77a9308030e1","status":"Succeeded","startTime":"2021-03-19T10:18:45.1709041Z","endTime":"2021-03-19T10:18:47.9761345Z","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 @@ -1370,7 +1292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:14 GMT + - Fri, 19 Mar 2021 10:19:14 GMT expires: - '-1' pragma: @@ -1396,7 +1318,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1406,13 +1328,12 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"8579d0a9-cca2-89fd-e979-a7f986fa4f38","name":"cli-sn-000005","created":"2021-03-02T09:38:43Z"}}' + 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":"10f7d1c7-351a-9322-231d-f1a565774add","name":"cli-sn-000005","created":"2021-03-19T10:18:45Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1423,7 +1344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:16 GMT + - Fri, 19 Mar 2021 10:19:15 GMT expires: - '-1' pragma: @@ -1459,15 +1380,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"8579d0a9-cca2-89fd-e979-a7f986fa4f38","fileSystemId":"4a3f7475-2c4f-ba38-9fa1-97dc89de90f2","name":"cli-sn-000005","created":"2021-03-02T09:38:43Z"}}]}' + 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":"10f7d1c7-351a-9322-231d-f1a565774add","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","name":"cli-sn-000005","created":"2021-03-19T10:18:45Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1478,7 +1396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:18 GMT + - Fri, 19 Mar 2021 10:19:18 GMT expires: - '-1' pragma: @@ -1514,15 +1432,12 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"8579d0a9-cca2-89fd-e979-a7f986fa4f38","name":"cli-sn-000005","created":"2021-03-02T09:38:43Z"}}' + 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":"10f7d1c7-351a-9322-231d-f1a565774add","name":"cli-sn-000005","created":"2021-03-19T10:18:45Z"}}' headers: access-control-expose-headers: - Request-Context @@ -1533,7 +1448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:22 GMT + - Fri, 19 Mar 2021 10:19:19 GMT expires: - '-1' pragma: @@ -1556,10 +1471,10 @@ interactions: code: 200 message: OK - request: - body: '{"snapshotId": "8579d0a9-cca2-89fd-e979-a7f986fa4f38"}' + body: '{"snapshotId": "10f7d1c7-351a-9322-231d-f1a565774add"}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1569,16 +1484,13 @@ interactions: Content-Length: - '54' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: POST - 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/revert?api-version=2020-11-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/revert?api-version=2020-12-01 response: body: string: '' @@ -1586,17 +1498,17 @@ interactions: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a595cfc-8c43-4e45-8f2f-2acf9ed66f98?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be8732e5-8aa4-4830-966c-ff20843192c0?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Mar 2021 09:39:24 GMT + - Fri, 19 Mar 2021 10:19:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a595cfc-8c43-4e45-8f2f-2acf9ed66f98?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be8732e5-8aa4-4830-966c-ff20843192c0?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1618,7 +1530,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1628,13 +1540,12 @@ interactions: ParameterSetName: - --resource-group -a -p -v -s User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a595cfc-8c43-4e45-8f2f-2acf9ed66f98?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be8732e5-8aa4-4830-966c-ff20843192c0?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1a595cfc-8c43-4e45-8f2f-2acf9ed66f98","name":"1a595cfc-8c43-4e45-8f2f-2acf9ed66f98","status":"Succeeded","startTime":"2021-03-02T09:39:24.065564Z","endTime":"2021-03-02T09:39:26.5172454Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be8732e5-8aa4-4830-966c-ff20843192c0","name":"be8732e5-8aa4-4830-966c-ff20843192c0","status":"Succeeded","startTime":"2021-03-19T10:19:22.034709Z","endTime":"2021-03-19T10:19:23.2378723Z","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 @@ -1645,7 +1556,59 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:55 GMT + - Fri, 19 Mar 2021 10:19: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume revert + Connection: + - keep-alive + ParameterSetName: + - --resource-group -a -p -v -s + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be8732e5-8aa4-4830-966c-ff20843192c0?api-version=2020-12-01&operationResultResponseType=Location + 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''2021-03-19T10%3A19%3A22.0967405Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"f48b0aad-8230-11e9-b1f5-ca1084b16d32","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f48b0aad823011e9b1f5ca1084b16d32_cf78dbab","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02","snapshotDirectoryVisible":false,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","poolId":"103da7d7-6340-b822-f78a-663c4148e7c8","mountTargets":[{"provisioningState":"","mountTargetId":"590a0575-6102-9c00-8981-ec642fe0ebdb","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '2314' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:19:51 GMT expires: - '-1' pragma: @@ -1681,15 +1644,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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":"8579d0a9-cca2-89fd-e979-a7f986fa4f38","fileSystemId":"4a3f7475-2c4f-ba38-9fa1-97dc89de90f2","name":"cli-sn-000005","created":"2021-03-02T09:38:43Z"}}]}' + 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":"10f7d1c7-351a-9322-231d-f1a565774add","fileSystemId":"590a0575-6102-9c00-8981-ec642fe0ebdb","name":"cli-sn-000005","created":"2021-03-19T10:18:45Z"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1700,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:39:57 GMT + - Fri, 19 Mar 2021 10:19:54 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_snapshot_policy_list_volumes.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_snapshot_policy_list_volumes.yaml index e2d4d2b85ce..4a2c095418e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_snapshot_policy_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_snapshot_policy_list_volumes.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '59' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A52%3A16.6929697Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A26%3A50.9804925Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a80487f0-4f91-44f4-af93-0b47ce4fed40?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f32a9e41-622e-4078-9a9a-b5bc4cc7bdda?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:52:16 GMT + - Fri, 19 Mar 2021 10:26:52 GMT etag: - - W/"datetime'2021-03-02T09%3A52%3A16.6929697Z'" + - W/"datetime'2021-03-19T10%3A26%3A50.9804925Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a80487f0-4f91-44f4-af93-0b47ce4fed40?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f32a9e41-622e-4078-9a9a-b5bc4cc7bdda?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/a80487f0-4f91-44f4-af93-0b47ce4fed40","name":"a80487f0-4f91-44f4-af93-0b47ce4fed40","status":"Succeeded","startTime":"2021-03-02T09:52:16.5255418Z","endTime":"2021-03-02T09:52:16.7758495Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f32a9e41-622e-4078-9a9a-b5bc4cc7bdda","name":"f32a9e41-622e-4078-9a9a-b5bc4cc7bdda","status":"Succeeded","startTime":"2021-03-19T10:26:50.8620056Z","endTime":"2021-03-19T10:26:51.0539531Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:52:49 GMT + - Fri, 19 Mar 2021 10:27:21 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A52%3A16.7680234Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T10%3A26%3A51.0425355Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:52:49 GMT + - Fri, 19 Mar 2021 10:27:22 GMT etag: - - W/"datetime'2021-03-02T09%3A52%3A16.7680234Z'" + - W/"datetime'2021-03-19T10%3A26%3A51.0425355Z'" expires: - '-1' pragma: @@ -185,34 +180,31 @@ interactions: Content-Length: - '312' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute --enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A52%3A53.451301Z''\"","location":"centralus","properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-19T10%3A27%3A25.6476585Z''\"","location":"centralus","properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f165d1af-b110-406b-82a3-a2199cc4b98d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/166c0b5a-d47d-4ce0-a33b-d9b81ccba2a7?api-version=2020-12-01 cache-control: - no-cache content-length: - - '730' + - '731' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:52:53 GMT + - Fri, 19 Mar 2021 10:27:25 GMT etag: - - W/"datetime'2021-03-02T09%3A52%3A53.451301Z'" + - W/"datetime'2021-03-19T10%3A27%3A25.6476585Z'" expires: - '-1' pragma: @@ -226,120 +218,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '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 policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute --enabled - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f165d1af-b110-406b-82a3-a2199cc4b98d?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f165d1af-b110-406b-82a3-a2199cc4b98d","name":"f165d1af-b110-406b-82a3-a2199cc4b98d","status":"Succeeded","startTime":"2021-03-02T09:52:53.0144757Z","endTime":"2021-03-02T09:52:53.5301895Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:53:25 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u --hourly-minute --enabled - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A52%3A53.5233521Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '758' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:53:25 GMT - etag: - - W/"datetime'2021-03-02T09%3A52%3A53.5233521Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -354,15 +238,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A52%3A53.5233521Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-19T10%3A27%3A25.7487296Z''\"","location":"centralus","properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"weeklySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"monthlySchedule":{"snapshotsToKeep":0,"hour":0,"minute":0},"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -373,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:27 GMT + - Fri, 19 Mar 2021 10:27:27 GMT etag: - - W/"datetime'2021-03-02T09%3A52%3A53.5233521Z'" + - W/"datetime'2021-03-19T10%3A27%3A25.7487296Z'" expires: - '-1' pragma: @@ -416,16 +297,16 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"fa169893-354c-4e90-8ecc-41f43e00e849\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ffc9acdc-04e7-44d7-aae4-a976549427f2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f52e1518-8f35-49fe-8b89-107486c1fa63\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"826a21a3-44a5-482d-975e-cd5098173f56\"\ ,\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\":\ @@ -434,7 +315,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/fb5c855e-4cbd-4d70-93ff-f347fbe61b26?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/94bc507a-3659-4af4-84ff-d90411f3ed3d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -442,7 +323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:36 GMT + - Fri, 19 Mar 2021 10:27:34 GMT expires: - '-1' pragma: @@ -455,9 +336,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b06aaed-a96d-495e-9461-0938ac1d8428 + - 202c4b0a-d6a7-4232-b414-24d6187fd64d x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -475,9 +356,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/fb5c855e-4cbd-4d70-93ff-f347fbe61b26?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/94bc507a-3659-4af4-84ff-d90411f3ed3d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -489,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:39 GMT + - Fri, 19 Mar 2021 10:27:37 GMT expires: - '-1' pragma: @@ -506,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2961c6eb-be34-47a5-a704-db6b90a6e853 + - 2d87d533-109a-433f-b75c-fd814a127de4 status: code: 200 message: OK @@ -524,16 +405,16 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"e31a598f-3f6d-4c13-af26-d4c61b2fe2b8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e8b91f27-80d5-417b-b269-98118bb0f9ff\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f52e1518-8f35-49fe-8b89-107486c1fa63\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"826a21a3-44a5-482d-975e-cd5098173f56\"\ ,\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\":\ @@ -546,9 +427,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:40 GMT + - Fri, 19 Mar 2021 10:27:37 GMT etag: - - W/"e31a598f-3f6d-4c13-af26-d4c61b2fe2b8" + - W/"e8b91f27-80d5-417b-b269-98118bb0f9ff" expires: - '-1' pragma: @@ -565,7 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0bc9b4ce-aa85-4d4f-aed2-6e9610175a98 + - 130689d5-a113-447b-86cb-94fb0e2da70b status: code: 200 message: OK @@ -583,16 +464,16 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"e31a598f-3f6d-4c13-af26-d4c61b2fe2b8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"e8b91f27-80d5-417b-b269-98118bb0f9ff\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f52e1518-8f35-49fe-8b89-107486c1fa63\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"826a21a3-44a5-482d-975e-cd5098173f56\"\ ,\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\":\ @@ -605,9 +486,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:41 GMT + - Fri, 19 Mar 2021 10:27:39 GMT etag: - - W/"e31a598f-3f6d-4c13-af26-d4c61b2fe2b8" + - W/"e8b91f27-80d5-417b-b269-98118bb0f9ff" expires: - '-1' pragma: @@ -624,7 +505,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 881011be-bc98-4550-9f7f-396e7c0e0d39 + - aed01d3e-b151-4384-bfaa-81a2ad5aa6a4 status: code: 200 message: OK @@ -651,26 +532,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"1db9a5c1-c802-4a42-acc3-6a44ef057397\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9a6ddb9b-094c-4976-87e0-a93605522b4e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"f52e1518-8f35-49fe-8b89-107486c1fa63\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"826a21a3-44a5-482d-975e-cd5098173f56\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"1db9a5c1-c802-4a42-acc3-6a44ef057397\\\"\"\ + ,\r\n \"etag\": \"W/\\\"9a6ddb9b-094c-4976-87e0-a93605522b4e\\\"\"\ ,\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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"1db9a5c1-c802-4a42-acc3-6a44ef057397\\\ + ,\r\n \"etag\": \"W/\\\"9a6ddb9b-094c-4976-87e0-a93605522b4e\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -684,7 +565,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/ee933ed6-b394-4e09-8214-26b5ea99dca5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8cd32323-c5b0-4b13-8761-a35b68b4fe2d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -692,7 +573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:42 GMT + - Fri, 19 Mar 2021 10:27:41 GMT expires: - '-1' pragma: @@ -709,9 +590,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a252f31a-1e96-4acf-9186-f97a97ced463 + - 0220f2e7-34f8-40fd-88c5-76d854e65629 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -729,9 +610,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/ee933ed6-b394-4e09-8214-26b5ea99dca5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8cd32323-c5b0-4b13-8761-a35b68b4fe2d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -743,7 +624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:46 GMT + - Fri, 19 Mar 2021 10:27:44 GMT expires: - '-1' pragma: @@ -760,7 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c732495-55ec-40a2-a0f5-41443a60583f + - b8372d82-2b5b-4178-a892-d4250de6049f status: code: 200 message: OK @@ -778,26 +659,26 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02?api-version=2020-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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02\"\ - ,\r\n \"etag\": \"W/\\\"a078cad4-92e3-45fc-9be1-17a73cdc8955\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"76b9be44-3f59-4bee-ade6-1752f1222399\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"f52e1518-8f35-49fe-8b89-107486c1fa63\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"826a21a3-44a5-482d-975e-cd5098173f56\"\ ,\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\": \"default\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default\"\ - ,\r\n \"etag\": \"W/\\\"a078cad4-92e3-45fc-9be1-17a73cdc8955\\\"\"\ + ,\r\n \"etag\": \"W/\\\"76b9be44-3f59-4bee-ade6-1752f1222399\\\"\"\ ,\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_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"a078cad4-92e3-45fc-9be1-17a73cdc8955\\\ + ,\r\n \"etag\": \"W/\\\"76b9be44-3f59-4bee-ade6-1752f1222399\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -817,9 +698,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:46 GMT + - Fri, 19 Mar 2021 10:27:44 GMT etag: - - W/"a078cad4-92e3-45fc-9be1-17a73cdc8955" + - W/"76b9be44-3f59-4bee-ade6-1752f1222399" expires: - '-1' pragma: @@ -836,7 +717,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 50eb4473-cbd9-40e7-a2b7-8262483725d1 + - 2ca47766-d028-4d9e-b7c9-b5ae6730c4ce status: code: 200 message: OK @@ -855,24 +736,21 @@ interactions: Content-Length: - '91' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-02T09%3A53%3A53.7484945Z''\"","location":"centralus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-19T10%3A27%3A51.0523949Z''\"","location":"centralus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d7d8ae73-f589-4aca-bc24-ca28958ab0cd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/cddaf185-59c3-4db5-baf5-fb7b69a795a7?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -880,9 +758,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:53:54 GMT + - Fri, 19 Mar 2021 10:27:51 GMT etag: - - W/"datetime'2021-03-02T09%3A53%3A53.7484945Z'" + - W/"datetime'2021-03-19T10%3A27%3A51.0523949Z'" expires: - '-1' pragma: @@ -896,7 +774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -906,7 +784,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -916,24 +794,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d7d8ae73-f589-4aca-bc24-ca28958ab0cd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/cddaf185-59c3-4db5-baf5-fb7b69a795a7?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/d7d8ae73-f589-4aca-bc24-ca28958ab0cd","name":"d7d8ae73-f589-4aca-bc24-ca28958ab0cd","status":"Succeeded","startTime":"2021-03-02T09:53:53.456281Z","endTime":"2021-03-02T09:53:53.9499875Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/cddaf185-59c3-4db5-baf5-fb7b69a795a7","name":"cddaf185-59c3-4db5-baf5-fb7b69a795a7","status":"Succeeded","startTime":"2021-03-19T10:27:50.8743514Z","endTime":"2021-03-19T10:27:51.3348225Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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: - - '616' + - '617' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:54:26 GMT + - Fri, 19 Mar 2021 10:28:22 GMT expires: - '-1' pragma: @@ -959,7 +836,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -969,13 +846,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-02T09%3A53%3A53.9396309Z''\"","location":"centralus","properties":{"poolId":"346f4085-0f79-419d-88b0-d9b692592780","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-19T10%3A27%3A51.2235141Z''\"","location":"centralus","properties":{"poolId":"fcdacace-f9ff-fe87-12c5-f941b0c9adb9","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -986,9 +862,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:54:27 GMT + - Fri, 19 Mar 2021 10:28:22 GMT etag: - - W/"datetime'2021-03-02T09%3A53%3A53.9396309Z'" + - W/"datetime'2021-03-19T10%3A27%3A51.2235141Z'" expires: - '-1' pragma: @@ -1026,25 +902,22 @@ interactions: Content-Length: - '681' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A54%3A34.3135507Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A28%3A30.9382231Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1052,9 +925,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:54:35 GMT + - Fri, 19 Mar 2021 10:28:31 GMT etag: - - W/"datetime'2021-03-02T09%3A54%3A34.3135507Z'" + - W/"datetime'2021-03-19T10%3A28%3A30.9382231Z'" expires: - '-1' pragma: @@ -1068,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -1078,7 +951,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1089,24 +962,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Creating","startTime":"2021-03-02T09:54:34.138437Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '638' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:55:06 GMT + - Fri, 19 Mar 2021 10:29:02 GMT expires: - '-1' pragma: @@ -1132,7 +1004,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1143,24 +1015,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Creating","startTime":"2021-03-02T09:54:34.138437Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '638' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:55:38 GMT + - Fri, 19 Mar 2021 10:29:32 GMT expires: - '-1' pragma: @@ -1186,7 +1057,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1197,24 +1068,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Creating","startTime":"2021-03-02T09:54:34.138437Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '638' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:56:08 GMT + - Fri, 19 Mar 2021 10:30:02 GMT expires: - '-1' pragma: @@ -1240,7 +1110,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1251,24 +1121,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Creating","startTime":"2021-03-02T09:54:34.138437Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '638' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:56:39 GMT + - Fri, 19 Mar 2021 10:30:32 GMT expires: - '-1' pragma: @@ -1294,7 +1163,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1305,24 +1174,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Creating","startTime":"2021-03-02T09:54:34.138437Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '638' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:57:09 GMT + - Fri, 19 Mar 2021 10:31:03 GMT expires: - '-1' pragma: @@ -1348,7 +1216,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1359,24 +1227,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/4f8719c3-ef9d-4b2a-8e41-7985fd952107","name":"4f8719c3-ef9d-4b2a-8e41-7985fd952107","status":"Succeeded","startTime":"2021-03-02T09:54:34.138437Z","endTime":"2021-03-02T09:57:39.7898742Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Creating","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '649' + - '639' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:57:40 GMT + - Fri, 19 Mar 2021 10:31:33 GMT expires: - '-1' pragma: @@ -1402,7 +1269,60 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold + --snapshot-policy-id + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/8e21461b-8948-4228-88d5-b8f28a656bd9","name":"8e21461b-8948-4228-88d5-b8f28a656bd9","status":"Succeeded","startTime":"2021-03-19T10:28:30.8018608Z","endTime":"2021-03-19T10:32:02.0401164Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '650' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 10:32: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: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1413,26 +1333,25 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A57%3A39.7794037Z''\"","location":"centralus","properties":{"mountTargets":[{"mountTargetId":"89bad758-cd5e-29b5-5664-dafac62db04b","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_d578aab8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A32%3A02.0293823Z''\"","location":"centralus","properties":{"mountTargets":[{"mountTargetId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_3223cb6fda1a11e99c40e68869d92205_4a775f46","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2097' + - '2117' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:57:41 GMT + - Fri, 19 Mar 2021 10:32:04 GMT etag: - - W/"datetime'2021-03-02T09%3A57%3A39.7794037Z'" + - W/"datetime'2021-03-19T10%3A32%3A02.0293823Z'" expires: - '-1' pragma: @@ -1468,15 +1387,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003/volumes?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003/volumes?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A57%3A39.7794037Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"f5ee81ae-aed6-11e9-b896-52cd499890b7","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_d578aab8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","poolId":"346f4085-0f79-419d-88b0-d9b692592780","mountTargets":[{"provisioningState":"","mountTargetId":"89bad758-cd5e-29b5-5664-dafac62db04b","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A32%3A02.0293823Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"3223cb6f-da1a-11e9-9c40-e68869d92205","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_3223cb6fda1a11e99c40e68869d92205_4a775f46","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","poolId":"fcdacace-f9ff-fe87-12c5-f941b0c9adb9","mountTargets":[{"provisioningState":"","mountTargetId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1487,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:57:43 GMT + - Fri, 19 Mar 2021 10:32:05 GMT expires: - '-1' pragma: @@ -1525,25 +1441,22 @@ interactions: Content-Length: - '681' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-02T09%3A57%3A52.2403263Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-19T10%3A32%3A13.3732877Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/9c2b762a-a04a-413d-8b9a-58e6e65427ad?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/15ba46bc-8916-4b2c-8b6b-279e0c7e44ee?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1551,9 +1464,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:57:53 GMT + - Fri, 19 Mar 2021 10:32:14 GMT etag: - - W/"datetime'2021-03-02T09%3A57%3A52.2403263Z'" + - W/"datetime'2021-03-19T10%3A32%3A13.3732877Z'" expires: - '-1' pragma: @@ -1567,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1577,7 +1490,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1588,24 +1501,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/9c2b762a-a04a-413d-8b9a-58e6e65427ad?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/15ba46bc-8916-4b2c-8b6b-279e0c7e44ee?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/9c2b762a-a04a-413d-8b9a-58e6e65427ad","name":"9c2b762a-a04a-413d-8b9a-58e6e65427ad","status":"Succeeded","startTime":"2021-03-02T09:57:51.9158071Z","endTime":"2021-03-02T09:58:06.9774135Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/15ba46bc-8916-4b2c-8b6b-279e0c7e44ee","name":"15ba46bc-8916-4b2c-8b6b-279e0c7e44ee","status":"Succeeded","startTime":"2021-03-19T10:32:13.2006784Z","endTime":"2021-03-19T10:32:27.322671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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: - - '650' + - '649' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:58:24 GMT + - Fri, 19 Mar 2021 10:32:44 GMT expires: - '-1' pragma: @@ -1631,7 +1543,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1642,26 +1554,25 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-02T09%3A58%3A06.9678803Z''\"","location":"centralus","properties":{"mountTargets":[{"mountTargetId":"9ed662fb-720f-d628-7c1e-841b5ac17910","fileSystemId":"9ed662fb-720f-d628-7c1e-841b5ac17910","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"9ed662fb-720f-d628-7c1e-841b5ac17910","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_d578aab8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-19T10%3A32%3A27.3130083Z''\"","location":"centralus","properties":{"mountTargets":[{"mountTargetId":"89b7750c-fde9-466a-d795-728d69500a8e","fileSystemId":"89b7750c-fde9-466a-d795-728d69500a8e","ipAddress":"10.5.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"89b7750c-fde9-466a-d795-728d69500a8e","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_3223cb6fda1a11e99c40e68869d92205_4a775f46","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2097' + - '2117' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:58:25 GMT + - Fri, 19 Mar 2021 10:32:44 GMT etag: - - W/"datetime'2021-03-02T09%3A58%3A06.9678803Z'" + - W/"datetime'2021-03-19T10%3A32%3A27.3130083Z'" expires: - '-1' pragma: @@ -1697,15 +1608,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003/volumes?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003/volumes?api-version=2020-12-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-02T09%3A58%3A06.9678803Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"9ed662fb-720f-d628-7c1e-841b5ac17910","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","ownerId":"f5ee81ae-aed6-11e9-b896-52cd499890b7","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_d578aab8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","poolId":"346f4085-0f79-419d-88b0-d9b692592780","mountTargets":[{"provisioningState":"","mountTargetId":"9ed662fb-720f-d628-7c1e-841b5ac17910","fileSystemId":"9ed662fb-720f-d628-7c1e-841b5ac17910","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T09%3A57%3A39.7794037Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"f5ee81ae-aed6-11e9-b896-52cd499890b7","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_d578aab8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","poolId":"346f4085-0f79-419d-88b0-d9b692592780","mountTargets":[{"provisioningState":"","mountTargetId":"89bad758-cd5e-29b5-5664-dafac62db04b","fileSystemId":"89bad758-cd5e-29b5-5664-dafac62db04b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_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''2021-03-19T10%3A32%3A27.3130083Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"89b7750c-fde9-466a-d795-728d69500a8e","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","ownerId":"3223cb6f-da1a-11e9-9c40-e68869d92205","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_3223cb6fda1a11e99c40e68869d92205_4a775f46","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000006","poolId":"fcdacace-f9ff-fe87-12c5-f941b0c9adb9","mountTargets":[{"provisioningState":"","mountTargetId":"89b7750c-fde9-466a-d795-728d69500a8e","fileSystemId":"89b7750c-fde9-466a-d795-728d69500a8e","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T10%3A32%3A02.0293823Z''\"","location":"centralus","properties":{"dataProtection":{"snapshot":{"snapshotPolicyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}},"provisioningState":"Succeeded","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","name":"cli-vol-000005","serviceLevel":"Premium","creationToken":"cli-vol-000005","ownerId":"3223cb6f-da1a-11e9-9c40-e68869d92205","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","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_3223cb6fda1a11e99c40e68869d92205_4a775f46","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","snapshotDirectoryVisible":true,"vendorID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000004/volumes/cli-vol-000005","poolId":"fcdacace-f9ff-fe87-12c5-f941b0c9adb9","mountTargets":[{"provisioningState":"","mountTargetId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","fileSystemId":"bf046b9a-3ed1-b0e0-510d-0cf8a35f6489","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"isCreate":false,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"qosType":"Auto","smbContinuouslyAvailable":false,"ldapEnabled":false,"encryptionKeySource":"Microsoft.NetApp"}}]}' headers: access-control-expose-headers: - Request-Context @@ -1716,7 +1624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:58:27 GMT + - Fri, 19 Mar 2021 10:32:46 GMT expires: - '-1' pragma: 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 0df5b6b1cc8..838af289eb0 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 @@ -13,34 +13,31 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A33%3A58.211492Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T11%3A15%3A56.2430731Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/dde8c3c3-25cb-4482-ae6d-8e6f6bb0a5cb?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76600684-2399-45b8-8597-a9b7220cfb3c?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '434' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:33:59 GMT + - Tue, 09 Mar 2021 11:15:57 GMT etag: - - W/"datetime'2021-03-01T15%3A33%3A58.211492Z'" + - W/"datetime'2021-03-09T11%3A15%3A56.2430731Z'" expires: - '-1' pragma: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dde8c3c3-25cb-4482-ae6d-8e6f6bb0a5cb?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76600684-2399-45b8-8597-a9b7220cfb3c?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dde8c3c3-25cb-4482-ae6d-8e6f6bb0a5cb","name":"dde8c3c3-25cb-4482-ae6d-8e6f6bb0a5cb","status":"Succeeded","startTime":"2021-03-01T15:33:58.1408211Z","endTime":"2021-03-01T15:33:58.2917795Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76600684-2399-45b8-8597-a9b7220cfb3c","name":"76600684-2399-45b8-8597-a9b7220cfb3c","status":"Succeeded","startTime":"2021-03-09T11:15:56.1812695Z","endTime":"2021-03-09T11:15:56.3262696Z","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 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:34:30 GMT + - Tue, 09 Mar 2021 11:16:27 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A33%3A58.2845435Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A15%3A56.3191266Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:34:31 GMT + - Tue, 09 Mar 2021 11:16:27 GMT etag: - - W/"datetime'2021-03-01T15%3A33%3A58.2845435Z'" + - W/"datetime'2021-03-09T11%3A15%3A56.3191266Z'" expires: - '-1' pragma: @@ -182,15 +177,12 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A33%3A58.2845435Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T11%3A15%3A56.3191266Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -201,9 +193,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:34:33 GMT + - Tue, 09 Mar 2021 11:16:29 GMT etag: - - W/"datetime'2021-03-01T15%3A33%3A58.2845435Z'" + - W/"datetime'2021-03-09T11%3A15%3A56.3191266Z'" expires: - '-1' pragma: @@ -239,38 +231,35 @@ interactions: Content-Length: - '62' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A34%3A37.4971366Z''\"","location":"westus2","properties":{"provisioningState":"Patching","encryption":{}}}' + 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''2021-03-09T11%3A16%3A33.980602Z''\"","location":"westus2","properties":{"provisioningState":"Patching","encryption":{}}}' 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/3d888b9f-aded-4f5d-bdfa-1857fe79e6a5?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e8748ba-cc59-4fd9-ac99-a257474884be?api-version=2020-12-01 cache-control: - no-cache content-length: - - '434' + - '433' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:34:36 GMT + - Tue, 09 Mar 2021 11:16:33 GMT etag: - - W/"datetime'2021-03-01T15%3A34%3A37.4971366Z'" + - W/"datetime'2021-03-09T11%3A16%3A33.980602Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d888b9f-aded-4f5d-bdfa-1857fe79e6a5?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e8748ba-cc59-4fd9-ac99-a257474884be?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -292,7 +281,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -302,13 +291,12 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d888b9f-aded-4f5d-bdfa-1857fe79e6a5?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e8748ba-cc59-4fd9-ac99-a257474884be?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3d888b9f-aded-4f5d-bdfa-1857fe79e6a5","name":"3d888b9f-aded-4f5d-bdfa-1857fe79e6a5","status":"Succeeded","startTime":"2021-03-01T15:34:37.4440479Z","endTime":"2021-03-01T15:34:37.6991169Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9e8748ba-cc59-4fd9-ac99-a257474884be","name":"9e8748ba-cc59-4fd9-ac99-a257474884be","status":"Succeeded","startTime":"2021-03-09T11:16:33.9086144Z","endTime":"2021-03-09T11:16:34.1836099Z","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 @@ -319,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:35:08 GMT + - Tue, 09 Mar 2021 11:17:03 GMT expires: - '-1' pragma: @@ -345,7 +333,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -355,13 +343,12 @@ interactions: ParameterSetName: - --resource-group -a --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-01T15%3A34%3A37.6942741Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' + 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''2021-03-09T11%3A16%3A34.1777403Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' headers: access-control-expose-headers: - Request-Context @@ -372,9 +359,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Mar 2021 15:35:09 GMT + - Tue, 09 Mar 2021 11:17:03 GMT etag: - - W/"datetime'2021-03-01T15%3A34%3A37.6942741Z'" + - W/"datetime'2021-03-09T11%3A16%3A34.1777403Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup.yaml index 1e9c7bb8b09..194b5f9a46a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -37,7 +37,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/41cdc55c-36cb-4282-9d57-b932ff954886?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/41cdc55c-36cb-4282-9d57-b932ff954886?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/41cdc55c-36cb-4282-9d57-b932ff954886?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/41cdc55c-36cb-4282-9d57-b932ff954886?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -258,7 +258,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ @@ -289,7 +289,7 @@ interactions: : false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/bfc4dbab-5562-45a9-a1bb-badb5b1d21bd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/bfc4dbab-5562-45a9-a1bb-badb5b1d21bd?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -336,7 +336,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/bfc4dbab-5562-45a9-a1bb-badb5b1d21bd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/bfc4dbab-5562-45a9-a1bb-badb5b1d21bd?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -385,7 +385,7 @@ interactions: User-Agent: - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Darwin-20.1.0-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"cli-vnet-backup000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006\"\ diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup_policy.yaml index 4668a4f2bcf..5870e3a6452 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_backup_policy.yaml @@ -1,432 +1,416 @@ interactions: - - request: - body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - Content-Length: - - '61' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T16%3A10%3A14.0720217Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5e8e2524-aff5-492c-9b07-ee5ba18b348d?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '438' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:10:15 GMT - etag: - - W/"datetime'2021-02-25T16%3A10%3A14.0720217Z'" - expires: - - '-1' - pragma: - - no-cache - 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/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5e8e2524-aff5-492c-9b07-ee5ba18b348d?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/5e8e2524-aff5-492c-9b07-ee5ba18b348d","name":"5e8e2524-aff5-492c-9b07-ee5ba18b348d","status":"Succeeded","startTime":"2021-02-25T16:10:14.0809728Z","endTime":"2021-02-25T16:10:14.2009842Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:10:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account create - Connection: - - keep-alive - ParameterSetName: - - -g -a -l - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-02-25T16%3A10%3A14.1929183Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '439' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:10:46 GMT - etag: - - W/"datetime'2021-02-25T16%3A10%3A14.1929183Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1"}, "properties": {"dailyBackupsToKeep": +- request: + body: '{"location": "eastus2euap", "properties": {"encryption": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '61' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A39%3A15.378726Z''\"","location":"eastus2euap","properties":{"encryption":{},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b06a55d7-db8b-40e9-8590-7231ecae96e3?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '437' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:39:16 GMT + etag: + - W/"datetime'2021-03-15T11%3A39%3A15.378726Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b06a55d7-db8b-40e9-8590-7231ecae96e3?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b06a55d7-db8b-40e9-8590-7231ecae96e3","name":"b06a55d7-db8b-40e9-8590-7231ecae96e3","status":"Succeeded","startTime":"2021-03-15T11:39:15.3937952Z","endTime":"2021-03-15T11:39:15.5012836Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '580' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:39:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-15T11%3A39%3A15.4931522Z''\"","location":"eastus2euap","properties":{"provisioningState":"Succeeded","encryption":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '439' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:39:46 GMT + etag: + - W/"datetime'2021-03-15T11%3A39%3A15.4931522Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value1"}, "properties": {"dailyBackupsToKeep": 1, "weeklyBackupsToKeep": 2, "monthlyBackupsToKeep": 3, "yearlyBackupsToKeep": 0, "enabled": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - Content-Length: - - '192' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T16%3A10%3A55.6569834Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/52950151-57b1-48cd-8ffe-860c02202cfb?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '622' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:10:56 GMT - etag: - - W/"datetime'2021-02-25T16%3A10%3A55.6569834Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created - - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/52950151-57b1-48cd-8ffe-860c02202cfb?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/52950151-57b1-48cd-8ffe-860c02202cfb","name":"52950151-57b1-48cd-8ffe-860c02202cfb","status":"Succeeded","startTime":"2021-02-25T16:10:55.66616Z","endTime":"2021-02-25T16:10:55.9438375Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' - headers: - cache-control: - - no-cache - content-length: - - '610' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:11:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - 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 backup-policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T16%3A10%3A55.9348279Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"backupPolicyId":"0a686ebb-7784-11eb-8534-ea60f316604e","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:11:29 GMT - etag: - - W/"datetime'2021-02-25T16%3A10%3A55.9348279Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value2"}, "properties": {"dailyBackupsToKeep": + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + Content-Length: + - '192' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A39%3A55.1358725Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/461559a2-7426-4466-a1da-5b888041976d?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '622' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:39:56 GMT + etag: + - W/"datetime'2021-03-15T11%3A39%3A55.1358725Z'" + expires: + - '-1' + pragma: + - no-cache + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/461559a2-7426-4466-a1da-5b888041976d?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/461559a2-7426-4466-a1da-5b888041976d","name":"461559a2-7426-4466-a1da-5b888041976d","status":"Succeeded","startTime":"2021-03-15T11:39:55.1445387Z","endTime":"2021-03-15T11:39:55.4379698Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '612' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:40:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy create + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A39%3A55.4314935Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"backupPolicyId":"297ee4c4-8583-11eb-9297-f2b8c6d4b16c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '679' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:40:28 GMT + etag: + - W/"datetime'2021-03-15T11%3A39%3A55.4314935Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; 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": "eastus2euap", "tags": {"Tag1": "Value2"}, "properties": {"dailyBackupsToKeep": 4, "weeklyBackupsToKeep": 5, "monthlyBackupsToKeep": 6, "yearlyBackupsToKeep": 0, "enabled": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles account backup-policy update - Connection: - - keep-alive - Content-Length: - - '193' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -a --backup-policy-name -l -d -w -m -e --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T16%3A11%3A33.0793291Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","enabled":true,"backupPolicyId":"0a686ebb-7784-11eb-8534-ea60f316604e","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/56780a3e-fc7e-433a-ae72-310de3cfda3e?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:11:33 GMT - etag: - - W/"datetime'2021-02-25T16%3A11%3A33.0793291Z'" - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/56780a3e-fc7e-433a-ae72-310de3cfda3e?api-version=2020-11-01&operationResultResponseType=Location - pragma: - - no-cache - 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 account backup-policy show - Connection: - - keep-alive - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-02-25T16%3A11%3A34.6144646Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"0a686ebb-7784-11eb-8534-ea60f316604e","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6,"yearlyBackupsToKeep":0}}' - headers: - cache-control: - - no-cache - content-length: - - '680' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Feb 2021 16:11:35 GMT - etag: - - W/"datetime'2021-02-25T16%3A11%3A34.6144646Z'" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account backup-policy update + Connection: + - keep-alive + Content-Length: + - '193' + Content-Type: + - application/json + ParameterSetName: + - -g -a --backup-policy-name -l -d -w -m -e --tags + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A40%3A31.8203143Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","enabled":true,"backupPolicyId":"297ee4c4-8583-11eb-9297-f2b8c6d4b16c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"yearlyBackupsToKeep":0}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/eb0cf352-dab4-4e97-9c75-8b1dd472f3b9?api-version=2020-12-01 + cache-control: + - no-cache + content-length: + - '678' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:40:31 GMT + etag: + - W/"datetime'2021-03-15T11%3A40%3A31.8203143Z'" + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/eb0cf352-dab4-4e97-9c75-8b1dd472f3b9?api-version=2020-12-01&operationResultResponseType=Location + pragma: + - no-cache + 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 account backup-policy show + Connection: + - keep-alive + ParameterSetName: + - -g -a --backup-policy-name + User-Agent: + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/backupPolicies/cli-ba-pol-000003","name":"cli-acc-000002/cli-ba-pol-000003","type":"Microsoft.NetApp/netAppAccounts/backupPolicies","etag":"W/\"datetime''2021-03-15T11%3A40%3A33.2603373Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"297ee4c4-8583-11eb-9297-f2b8c6d4b16c","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6,"yearlyBackupsToKeep":0}}' + headers: + cache-control: + - no-cache + content-length: + - '680' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Mar 2021 11:40:34 GMT + etag: + - W/"datetime'2021-03-15T11%3A40%3A33.2603373Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml index 428cd99fb58..80ea7e5feb4 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 @@ -13,24 +13,21 @@ interactions: Content-Length: - '57' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A52%3A44.7468092Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T13%3A06%3A03.0761437Z''\"","location":"westus2","properties":{"encryption":{},"provisioningState":"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/463c3ef5-620a-432e-99cd-b31552343c72?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdba960b-267b-497c-b509-2155e3edf044?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:52:45 GMT + - Tue, 09 Mar 2021 13:06:03 GMT etag: - - W/"datetime'2021-03-02T08%3A52%3A44.7468092Z'" + - W/"datetime'2021-03-09T13%3A06%3A03.0761437Z'" expires: - '-1' pragma: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/463c3ef5-620a-432e-99cd-b31552343c72?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdba960b-267b-497c-b509-2155e3edf044?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/463c3ef5-620a-432e-99cd-b31552343c72","name":"463c3ef5-620a-432e-99cd-b31552343c72","status":"Succeeded","startTime":"2021-03-02T08:52:44.6575731Z","endTime":"2021-03-02T08:52:44.8299969Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdba960b-267b-497c-b509-2155e3edf044","name":"cdba960b-267b-497c-b509-2155e3edf044","status":"Succeeded","startTime":"2021-03-09T13:06:03.0093951Z","endTime":"2021-03-09T13:06:03.1762292Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:53:17 GMT + - Tue, 09 Mar 2021 13:06:33 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A52%3A44.8198629Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-09T13%3A06%3A03.1682085Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:53:18 GMT + - Tue, 09 Mar 2021 13:06:34 GMT etag: - - W/"datetime'2021-03-02T08%3A52%3A44.8198629Z'" + - W/"datetime'2021-03-09T13%3A06%3A03.1682085Z'" expires: - '-1' pragma: @@ -183,34 +178,31 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A53%3A27.307376Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A06%3A41.5612051Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"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/38fec3bb-252b-47ef-ad57-9c5fc160c511?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86234528-5fdc-4b9c-baa1-18a799697e17?api-version=2020-12-01 cache-control: - no-cache content-length: - - '598' + - '599' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:53:28 GMT + - Tue, 09 Mar 2021 13:06:41 GMT etag: - - W/"datetime'2021-03-02T08%3A53%3A27.307376Z'" + - W/"datetime'2021-03-09T13%3A06%3A41.5612051Z'" expires: - '-1' pragma: @@ -234,7 +226,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -244,24 +236,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38fec3bb-252b-47ef-ad57-9c5fc160c511?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86234528-5fdc-4b9c-baa1-18a799697e17?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/38fec3bb-252b-47ef-ad57-9c5fc160c511","name":"38fec3bb-252b-47ef-ad57-9c5fc160c511","status":"Succeeded","startTime":"2021-03-02T08:53:27.241184Z","endTime":"2021-03-02T08:53:27.5597954Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/86234528-5fdc-4b9c-baa1-18a799697e17","name":"86234528-5fdc-4b9c-baa1-18a799697e17","status":"Succeeded","startTime":"2021-03-09T13:06:41.5226326Z","endTime":"2021-03-09T13:06:41.7200045Z","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' + - '615' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:03 GMT + - Tue, 09 Mar 2021 13:07:12 GMT expires: - '-1' pragma: @@ -287,7 +278,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -297,26 +288,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A53%3A27.5495492Z''\"","location":"westus2","properties":{"poolId":"ac22838b-916f-127a-c13a-36ef21e78ae0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A06%3A41.715314Z''\"","location":"westus2","properties":{"poolId":"ff0fcdcc-61cd-8d5b-be05-70a202472f6c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '695' + - '694' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:04 GMT + - Tue, 09 Mar 2021 13:07:12 GMT etag: - - W/"datetime'2021-03-02T08%3A53%3A27.5495492Z'" + - W/"datetime'2021-03-09T13%3A06%3A41.715314Z'" expires: - '-1' pragma: @@ -352,28 +342,25 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --qos-type User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A53%3A27.5495492Z''\"","location":"westus2","properties":{"poolId":"ac22838b-916f-127a-c13a-36ef21e78ae0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-09T13%3A06%3A41.715314Z''\"","location":"westus2","properties":{"poolId":"ff0fcdcc-61cd-8d5b-be05-70a202472f6c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '695' + - '694' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:07 GMT + - Tue, 09 Mar 2021 13:07:14 GMT etag: - - W/"datetime'2021-03-02T08%3A53%3A27.5495492Z'" + - W/"datetime'2021-03-09T13%3A06%3A41.715314Z'" expires: - '-1' pragma: @@ -410,24 +397,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -a -p --tags --qos-type User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A54%3A10.6194857Z''\"","location":"westus2","properties":{"provisioningState":"Patching","poolId":"ac22838b-916f-127a-c13a-36ef21e78ae0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single"}}' + 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''2021-03-09T13%3A07%3A19.4198334Z''\"","location":"westus2","properties":{"provisioningState":"Patching","poolId":"ff0fcdcc-61cd-8d5b-be05-70a202472f6c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single"}}' 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/3e78349e-fbd8-4728-a056-140917544cc9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3990837f-3358-480f-9a95-a8af1bf5691c?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -435,13 +419,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:10 GMT + - Tue, 09 Mar 2021 13:07:18 GMT etag: - - W/"datetime'2021-03-02T08%3A54%3A10.6194857Z'" + - W/"datetime'2021-03-09T13%3A07%3A19.4198334Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e78349e-fbd8-4728-a056-140917544cc9?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3990837f-3358-480f-9a95-a8af1bf5691c?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -453,7 +437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -463,7 +447,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -473,13 +457,12 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --qos-type User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e78349e-fbd8-4728-a056-140917544cc9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3990837f-3358-480f-9a95-a8af1bf5691c?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e78349e-fbd8-4728-a056-140917544cc9","name":"3e78349e-fbd8-4728-a056-140917544cc9","status":"Succeeded","startTime":"2021-03-02T08:54:10.5656599Z","endTime":"2021-03-02T08:54:11.8714679Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3990837f-3358-480f-9a95-a8af1bf5691c","name":"3990837f-3358-480f-9a95-a8af1bf5691c","status":"Succeeded","startTime":"2021-03-09T13:07:19.3595014Z","endTime":"2021-03-09T13:07:19.7525494Z","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 @@ -490,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:42 GMT + - Tue, 09 Mar 2021 13:07:49 GMT expires: - '-1' pragma: @@ -516,7 +499,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -526,13 +509,12 @@ interactions: ParameterSetName: - --resource-group -a -p --tags --qos-type User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T08%3A54%3A11.8573734Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"ac22838b-916f-127a-c13a-36ef21e78ae0","serviceLevel":"Premium","size":4398046511104,"qosType":"Manual","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single"}}' + 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''2021-03-09T13%3A07%3A19.7510657Z''\"","location":"westus2","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"ff0fcdcc-61cd-8d5b-be05-70a202472f6c","serviceLevel":"Premium","size":4398046511104,"qosType":"Manual","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single"}}' headers: access-control-expose-headers: - Request-Context @@ -543,9 +525,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 08:54:43 GMT + - Tue, 09 Mar 2021 13:07:50 GMT etag: - - W/"datetime'2021-03-02T08%3A54%3A11.8573734Z'" + - W/"datetime'2021-03-09T13%3A07%3A19.7510657Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_snapshot_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_snapshot_policy.yaml index 5dd1a1a5eea..52609525e94 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_snapshot_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_snapshot_policy.yaml @@ -13,24 +13,21 @@ interactions: Content-Length: - '59' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A49%3A59.2993014Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A06%3A42.4360879Z''\"","location":"centralus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f954b6bf-afc5-4b5d-93f5-9ceb5b354950?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/85acde2a-b13d-40f5-8409-4e8b7e7add13?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -38,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:50:00 GMT + - Tue, 09 Mar 2021 14:06:43 GMT etag: - - W/"datetime'2021-03-02T09%3A49%3A59.2993014Z'" + - W/"datetime'2021-03-09T14%3A06%3A42.4360879Z'" expires: - '-1' pragma: @@ -54,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -64,7 +61,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -74,13 +71,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f954b6bf-afc5-4b5d-93f5-9ceb5b354950?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/85acde2a-b13d-40f5-8409-4e8b7e7add13?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f954b6bf-afc5-4b5d-93f5-9ceb5b354950","name":"f954b6bf-afc5-4b5d-93f5-9ceb5b354950","status":"Succeeded","startTime":"2021-03-02T09:49:59.2244159Z","endTime":"2021-03-02T09:49:59.3872616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/85acde2a-b13d-40f5-8409-4e8b7e7add13","name":"85acde2a-b13d-40f5-8409-4e8b7e7add13","status":"Succeeded","startTime":"2021-03-09T14:06:42.3072167Z","endTime":"2021-03-09T14:06:42.5255751Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: access-control-expose-headers: - Request-Context @@ -91,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:50:32 GMT + - Tue, 09 Mar 2021 14:07:13 GMT expires: - '-1' pragma: @@ -117,7 +113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -127,13 +123,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T09%3A49%3A59.3773573Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-09T14%3A06%3A42.5191464Z''\"","location":"centralus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -144,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:50:33 GMT + - Tue, 09 Mar 2021 14:07:13 GMT etag: - - W/"datetime'2021-03-02T09%3A49%3A59.3773573Z'" + - W/"datetime'2021-03-09T14%3A06%3A42.5191464Z'" expires: - '-1' pragma: @@ -186,26 +181,23 @@ interactions: Content-Length: - '385' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A50%3A36.7541244Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"2,5,30","hour":4,"minute":40},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A07%3A17.1426901Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"2,5,30","hour":4,"minute":40},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0fc8f9d0-95ea-4afb-843d-fa48770c5c7b?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/bb98f305-e227-4a62-aad5-d1a7a3259dfe?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -213,9 +205,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:50:36 GMT + - Tue, 09 Mar 2021 14:07:17 GMT etag: - - W/"datetime'2021-03-02T09%3A50%3A36.7541244Z'" + - W/"datetime'2021-03-09T14%3A07%3A17.1426901Z'" expires: - '-1' pragma: @@ -229,124 +221,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '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 policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute - --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour - --weekly-day --monthly-days --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0fc8f9d0-95ea-4afb-843d-fa48770c5c7b?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/0fc8f9d0-95ea-4afb-843d-fa48770c5c7b","name":"0fc8f9d0-95ea-4afb-843d-fa48770c5c7b","status":"Succeeded","startTime":"2021-03-02T09:50:36.5018167Z","endTime":"2021-03-02T09:50:37.0006645Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '612' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:51: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 snapshot policy create - Connection: - - keep-alive - ParameterSetName: - - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute - --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour - --weekly-day --monthly-days --enabled --tags - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A50%3A36.8361836Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"2,5,30","hour":4,"minute":40},"provisioningState":"Succeeded"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 09:51:08 GMT - etag: - - W/"datetime'2021-03-02T09%3A50%3A36.8361836Z'" - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; 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": "centralus", "properties": {"hourlySchedule": {"snapshotsToKeep": 5, "minute": 50}, "dailySchedule": {"snapshotsToKeep": 6, "hour": 6, "minute": @@ -365,26 +245,23 @@ interactions: Content-Length: - '360' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u -d -w -m --hourly-minute --daily-minute --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A51%3A12.4109237Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"2,5,30","hour":4,"minute":40}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A07%3A19.4933537Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","name":"cli-sn-pol-000003","enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{"snapshotsToKeep":2,"hour":2,"minute":20},"weeklySchedule":{"snapshotsToKeep":3,"day":"Monday","hour":3,"minute":30},"monthlySchedule":{"snapshotsToKeep":4,"daysOfMonth":"2,5,30","hour":4,"minute":40}}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3503ecc5-0f31-4516-b17c-b00232d74ddc?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f13de69b-d074-4d19-8a55-6cc52e30d16d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -392,13 +269,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:51:12 GMT + - Tue, 09 Mar 2021 14:07:18 GMT etag: - - W/"datetime'2021-03-02T09%3A51%3A12.4109237Z'" + - W/"datetime'2021-03-09T14%3A07%3A19.4933537Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3503ecc5-0f31-4516-b17c-b00232d74ddc?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f13de69b-d074-4d19-8a55-6cc52e30d16d?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -420,7 +297,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -432,13 +309,12 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3503ecc5-0f31-4516-b17c-b00232d74ddc?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f13de69b-d074-4d19-8a55-6cc52e30d16d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/3503ecc5-0f31-4516-b17c-b00232d74ddc","name":"3503ecc5-0f31-4516-b17c-b00232d74ddc","status":"Succeeded","startTime":"2021-03-02T09:51:12.0642298Z","endTime":"2021-03-02T09:51:12.6301191Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centralus/operationResults/f13de69b-d074-4d19-8a55-6cc52e30d16d","name":"f13de69b-d074-4d19-8a55-6cc52e30d16d","status":"Succeeded","startTime":"2021-03-09T14:07:19.3191144Z","endTime":"2021-03-09T14:07:19.6871244Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003"}}' headers: access-control-expose-headers: - Request-Context @@ -449,7 +325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:51:43 GMT + - Tue, 09 Mar 2021 14:07:49 GMT expires: - '-1' pragma: @@ -475,7 +351,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -487,13 +363,12 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A51%3A12.6100663Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":5,"minute":50},"dailySchedule":{"snapshotsToKeep":6,"hour":6,"minute":0},"weeklySchedule":{"snapshotsToKeep":7,"day":"Wednesday","hour":7,"minute":10},"monthlySchedule":{"snapshotsToKeep":8,"daysOfMonth":"1,2,20","hour":8,"minute":20}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A07%3A19.6794859Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":5,"minute":50},"dailySchedule":{"snapshotsToKeep":6,"hour":6,"minute":0},"weeklySchedule":{"snapshotsToKeep":7,"day":"Wednesday","hour":7,"minute":10},"monthlySchedule":{"snapshotsToKeep":8,"daysOfMonth":"1,2,20","hour":8,"minute":20}}}' headers: access-control-expose-headers: - Request-Context @@ -504,9 +379,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:51:44 GMT + - Tue, 09 Mar 2021 14:07:50 GMT etag: - - W/"datetime'2021-03-02T09%3A51%3A12.6100663Z'" + - W/"datetime'2021-03-09T14%3A07%3A19.6794859Z'" expires: - '-1' pragma: @@ -542,15 +417,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.20.0 azsdk-python-mgmt-netapp/1.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-02T09%3A51%3A12.6100663Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":5,"minute":50},"dailySchedule":{"snapshotsToKeep":6,"hour":6,"minute":0},"weeklySchedule":{"snapshotsToKeep":7,"day":"Wednesday","hour":7,"minute":10},"monthlySchedule":{"snapshotsToKeep":8,"daysOfMonth":"1,2,20","hour":8,"minute":20}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/snapshotPolicies/cli-sn-pol-000003","name":"cli-acc-000002/cli-sn-pol-000003","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-03-09T14%3A07%3A19.6794859Z''\"","location":"centralus","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Succeeded","name":"cli-sn-pol-000003","enabled":false,"hourlySchedule":{"snapshotsToKeep":5,"minute":50},"dailySchedule":{"snapshotsToKeep":6,"hour":6,"minute":0},"weeklySchedule":{"snapshotsToKeep":7,"day":"Wednesday","hour":7,"minute":10},"monthlySchedule":{"snapshotsToKeep":8,"daysOfMonth":"1,2,20","hour":8,"minute":20}}}' headers: access-control-expose-headers: - Request-Context @@ -561,9 +433,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 09:51:47 GMT + - Tue, 09 Mar 2021 14:07:51 GMT etag: - - W/"datetime'2021-03-02T09%3A51%3A12.6100663Z'" + - W/"datetime'2021-03-09T14%3A07%3A19.6794859Z'" 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 5e125eaf546..588dc508806 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -18,16 +18,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"3d951af2-d5ea-47cb-93b0-aa0ba731015b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"b3156294-fa45-4c46-85ee-0dec28dc8657\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2fc74da8-2478-48ff-a0e7-f18e8febb7a4\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"e44eb3bd-2c4d-4d5b-b6ea-b7cae8d53c1d\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,7 +36,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/de7b2598-54d9-4459-bda6-043c744f0d08?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0624c01-0ad5-4dbe-9d84-94ec0e55db31?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -44,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:34 GMT + - Fri, 19 Mar 2021 11:56:43 GMT expires: - '-1' pragma: @@ -57,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0ef75bf-3870-4b3b-b95a-7e312b685a62 + - 54151a99-1307-4ed4-82db-46cdc5a9e168 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/de7b2598-54d9-4459-bda6-043c744f0d08?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0624c01-0ad5-4dbe-9d84-94ec0e55db31?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:39 GMT + - Fri, 19 Mar 2021 11:56:46 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c3e4cd25-271a-4b09-90e4-7a774bdc34bf + - f3754bba-e61d-4eb1-b4f8-15eb92deefd8 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"53089711-655c-409a-82a2-13664cff4b00\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"de328165-b31a-4a76-ad46-d273a238db35\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2fc74da8-2478-48ff-a0e7-f18e8febb7a4\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e44eb3bd-2c4d-4d5b-b6ea-b7cae8d53c1d\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -148,9 +148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:39 GMT + - Fri, 19 Mar 2021 11:56:46 GMT etag: - - W/"53089711-655c-409a-82a2-13664cff4b00" + - W/"de328165-b31a-4a76-ad46-d273a238db35" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5474948e-8fa0-48b5-b316-fdfa9ee48c94 + - 9e064a18-4b22-428c-a0c4-33a6a9e09ff6 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"53089711-655c-409a-82a2-13664cff4b00\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"de328165-b31a-4a76-ad46-d273a238db35\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2fc74da8-2478-48ff-a0e7-f18e8febb7a4\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e44eb3bd-2c4d-4d5b-b6ea-b7cae8d53c1d\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -207,9 +207,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:40 GMT + - Fri, 19 Mar 2021 11:56:47 GMT etag: - - W/"53089711-655c-409a-82a2-13664cff4b00" + - W/"de328165-b31a-4a76-ad46-d273a238db35" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09d7f503-2b5a-46a7-a6fc-5a29d6572410 + - c0cfd690-eb88-4fa4-b9f2-241353049ce7 status: code: 200 message: OK @@ -253,26 +253,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-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/\\\"17422094-b23c-451a-be13-e9d3e8ae7a09\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"29b4c439-f627-4886-ae58-1aed6eb99654\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2fc74da8-2478-48ff-a0e7-f18e8febb7a4\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"e44eb3bd-2c4d-4d5b-b6ea-b7cae8d53c1d\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"17422094-b23c-451a-be13-e9d3e8ae7a09\\\"\"\ + ,\r\n \"etag\": \"W/\\\"29b4c439-f627-4886-ae58-1aed6eb99654\\\"\"\ ,\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/\\\"17422094-b23c-451a-be13-e9d3e8ae7a09\\\ + ,\r\n \"etag\": \"W/\\\"29b4c439-f627-4886-ae58-1aed6eb99654\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,7 +286,7 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d5d1d872-87d6-48d4-8e9b-1fe5af7024ce?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ffd9fd1-8271-40f2-953c-0dbb16253209?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:41 GMT + - Fri, 19 Mar 2021 11:56:49 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60a3367f-d52d-48ca-997e-8e941a17069a + - 1535a14e-a199-4419-b596-ed0fa8b25a52 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d5d1d872-87d6-48d4-8e9b-1fe5af7024ce?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ffd9fd1-8271-40f2-953c-0dbb16253209?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:44 GMT + - Fri, 19 Mar 2021 11:56:52 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 17585ed2-b3c1-4884-91fb-0e841d3064d4 + - 67c2542a-31d3-4e65-bc2e-4cebb9905994 status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2020-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/\\\"42efa62c-61bb-4a73-bf33-4dfcc69a9228\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8e087690-ebb3-4261-a791-3654c4810c8d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2fc74da8-2478-48ff-a0e7-f18e8febb7a4\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"e44eb3bd-2c4d-4d5b-b6ea-b7cae8d53c1d\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"42efa62c-61bb-4a73-bf33-4dfcc69a9228\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8e087690-ebb3-4261-a791-3654c4810c8d\\\"\"\ ,\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/\\\"42efa62c-61bb-4a73-bf33-4dfcc69a9228\\\ + ,\r\n \"etag\": \"W/\\\"8e087690-ebb3-4261-a791-3654c4810c8d\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -419,9 +419,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:45 GMT + - Fri, 19 Mar 2021 11:56:52 GMT etag: - - W/"42efa62c-61bb-4a73-bf33-4dfcc69a9228" + - W/"8e087690-ebb3-4261-a791-3654c4810c8d" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fdb8058f-af8e-4315-b07e-4d4f853f06ac + - e6207557-fb34-47c4-8849-42ebd107ade7 status: code: 200 message: OK @@ -456,24 +456,21 @@ interactions: Content-Length: - '56' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A52%3A50.5553597Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T11%3A56%3A59.1707395Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c0775cc4-610e-476c-bfb7-4fc30277f43e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b1ca6677-ed52-4a38-a3aa-1f6e3a4c7f3c?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -481,9 +478,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:52:52 GMT + - Fri, 19 Mar 2021 11:57:00 GMT etag: - - W/"datetime'2021-03-02T10%3A52%3A50.5553597Z'" + - W/"datetime'2021-03-19T11%3A56%3A59.1707395Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,13 +514,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c0775cc4-610e-476c-bfb7-4fc30277f43e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b1ca6677-ed52-4a38-a3aa-1f6e3a4c7f3c?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c0775cc4-610e-476c-bfb7-4fc30277f43e","name":"c0775cc4-610e-476c-bfb7-4fc30277f43e","status":"Succeeded","startTime":"2021-03-02T10:52:50.5041682Z","endTime":"2021-03-02T10:52:50.6350003Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b1ca6677-ed52-4a38-a3aa-1f6e3a4c7f3c","name":"b1ca6677-ed52-4a38-a3aa-1f6e3a4c7f3c","status":"Succeeded","startTime":"2021-03-19T11:56:59.1161121Z","endTime":"2021-03-19T11:56:59.2611415Z","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 @@ -534,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:53:23 GMT + - Fri, 19 Mar 2021 11:57:30 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,13 +566,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A52%3A50.6304125Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + 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''2021-03-19T11%3A56%3A59.2547993Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context @@ -587,9 +582,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:53:24 GMT + - Fri, 19 Mar 2021 11:57:30 GMT etag: - - W/"datetime'2021-03-02T10%3A52%3A50.6304125Z'" + - W/"datetime'2021-03-19T11%3A56%3A59.2547993Z'" expires: - '-1' pragma: @@ -626,24 +621,21 @@ interactions: Content-Length: - '88' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A53%3A32.0036689Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A57%3A38.4186988Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c27286bb-c730-4c86-9af8-29cbef2a9376?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/af8db34f-df36-406d-b45c-44f96eb0502d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -651,9 +643,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:53:32 GMT + - Fri, 19 Mar 2021 11:57:38 GMT etag: - - W/"datetime'2021-03-02T10%3A53%3A32.0036689Z'" + - W/"datetime'2021-03-19T11%3A57%3A38.4186988Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,13 +679,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c27286bb-c730-4c86-9af8-29cbef2a9376?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/af8db34f-df36-406d-b45c-44f96eb0502d?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/c27286bb-c730-4c86-9af8-29cbef2a9376","name":"c27286bb-c730-4c86-9af8-29cbef2a9376","status":"Succeeded","startTime":"2021-03-02T10:53:31.9591336Z","endTime":"2021-03-02T10:53:32.2430547Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/af8db34f-df36-406d-b45c-44f96eb0502d","name":"af8db34f-df36-406d-b45c-44f96eb0502d","status":"Succeeded","startTime":"2021-03-19T11:57:38.3791947Z","endTime":"2021-03-19T11:57:38.5760325Z","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 @@ -704,7 +695,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:54:03 GMT + - Fri, 19 Mar 2021 11:58:09 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,13 +731,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A53%3A32.2378332Z''\"","location":"eastus","properties":{"poolId":"6b3afa83-f77a-1211-9370-efddac27d58c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T11%3A57%3A38.5708071Z''\"","location":"eastus","properties":{"poolId":"d67e8a11-7918-58a3-4d09-7f9ae278c66c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context @@ -757,9 +747,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:54:04 GMT + - Fri, 19 Mar 2021 11:58:09 GMT etag: - - W/"datetime'2021-03-02T10%3A53%3A32.2378332Z'" + - W/"datetime'2021-03-19T11%3A57%3A38.5708071Z'" expires: - '-1' pragma: @@ -796,25 +786,22 @@ interactions: Content-Length: - '394' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A54%3A11.9919407Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T11%3A58%3A18.7664411Z''\"","location":"eastus","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/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -822,9 +809,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:54:12 GMT + - Fri, 19 Mar 2021 11:58:19 GMT etag: - - W/"datetime'2021-03-02T10%3A54%3A11.9919407Z'" + - W/"datetime'2021-03-19T11%3A58%3A18.7664411Z'" expires: - '-1' pragma: @@ -838,7 +825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -848,223 +835,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name -l --service-level - --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 10:54: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 --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 10:55: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 --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 10:55: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 --rule-index --allowed-clients - User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - access-control-expose-headers: - - Request-Context - cache-control: - - no-cache - content-length: - - '636' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Mar 2021 10:56: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: @@ -1075,13 +846,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1092,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:56:46 GMT + - Fri, 19 Mar 2021 11:58:50 GMT expires: - '-1' pragma: @@ -1118,7 +888,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1129,13 +899,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1146,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:57:17 GMT + - Fri, 19 Mar 2021 11:59:19 GMT expires: - '-1' pragma: @@ -1172,7 +941,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1183,13 +952,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1200,7 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:57:48 GMT + - Fri, 19 Mar 2021 11:59:50 GMT expires: - '-1' pragma: @@ -1226,7 +994,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1237,13 +1005,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1254,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:58:19 GMT + - Fri, 19 Mar 2021 12:00:20 GMT expires: - '-1' pragma: @@ -1280,7 +1047,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1291,13 +1058,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1308,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:58:49 GMT + - Fri, 19 Mar 2021 12:00:51 GMT expires: - '-1' pragma: @@ -1334,7 +1100,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1345,13 +1111,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1362,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:59:20 GMT + - Fri, 19 Mar 2021 12:01:21 GMT expires: - '-1' pragma: @@ -1388,7 +1153,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1399,13 +1164,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Creating","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Creating","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context @@ -1416,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 10:59:50 GMT + - Fri, 19 Mar 2021 12:01:51 GMT expires: - '-1' pragma: @@ -1442,7 +1206,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1453,13 +1217,12 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/8a1e0874-b9b4-433d-a75e-6111a6e12d0a","name":"8a1e0874-b9b4-433d-a75e-6111a6e12d0a","status":"Succeeded","startTime":"2021-03-02T10:54:11.9367699Z","endTime":"2021-03-02T10:59:59.4794518Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/19cac86e-ffd3-4a67-a624-f2a82b1505da","name":"19cac86e-ffd3-4a67-a624-f2a82b1505da","status":"Succeeded","startTime":"2021-03-19T11:58:18.7243607Z","endTime":"2021-03-19T12:02:03.8830356Z","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 @@ -1470,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:00:22 GMT + - Fri, 19 Mar 2021 12:02:22 GMT expires: - '-1' pragma: @@ -1496,7 +1259,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1507,26 +1270,25 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --rule-index --allowed-clients User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A59%3A59.4736201Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_7c988749","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A02%3A03.8728059Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"5494d51f-3f90-6788-18a0-a7fe2f730545","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_fc7edc7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1834' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:00:23 GMT + - Fri, 19 Mar 2021 12:02:23 GMT etag: - - W/"datetime'2021-03-02T10%3A59%3A59.4736201Z'" + - W/"datetime'2021-03-19T12%3A02%3A03.8728059Z'" expires: - '-1' pragma: @@ -1562,28 +1324,25 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T10%3A59%3A59.4736201Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_7c988749","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A02%3A03.8728059Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"5494d51f-3f90-6788-18a0-a7fe2f730545","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_fc7edc7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1814' + - '1834' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:00:25 GMT + - Fri, 19 Mar 2021 12:02:24 GMT etag: - - W/"datetime'2021-03-02T10%3A59%3A59.4736201Z'" + - W/"datetime'2021-03-19T12%3A02%3A03.8728059Z'" expires: - '-1' pragma: @@ -1620,38 +1379,35 @@ interactions: Content-Length: - '103' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A00%3A28.53817Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_7c988749","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A02%3A27.7714494Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"5494d51f-3f90-6788-18a0-a7fe2f730545","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Patching","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_fc7edc7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74d81d89-c82a-4cd1-b6ef-24de347bcff0?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba07bfdb-3b91-4352-8dd6-6dcbbdbe98c2?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1811' + - '1833' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:00:28 GMT + - Fri, 19 Mar 2021 12:02:27 GMT etag: - - W/"datetime'2021-03-02T11%3A00%3A28.53817Z'" + - W/"datetime'2021-03-19T12%3A02%3A27.7714494Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74d81d89-c82a-4cd1-b6ef-24de347bcff0?api-version=2020-11-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba07bfdb-3b91-4352-8dd6-6dcbbdbe98c2?api-version=2020-12-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1663,7 +1419,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -1673,7 +1429,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1683,24 +1439,23 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74d81d89-c82a-4cd1-b6ef-24de347bcff0?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba07bfdb-3b91-4352-8dd6-6dcbbdbe98c2?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/74d81d89-c82a-4cd1-b6ef-24de347bcff0","name":"74d81d89-c82a-4cd1-b6ef-24de347bcff0","status":"Succeeded","startTime":"2021-03-02T11:00:28.4960831Z","endTime":"2021-03-02T11:00:36.0944634Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/ba07bfdb-3b91-4352-8dd6-6dcbbdbe98c2","name":"ba07bfdb-3b91-4352-8dd6-6dcbbdbe98c2","status":"Succeeded","startTime":"2021-03-19T12:02:27.7360933Z","endTime":"2021-03-19T12:02:30.964295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '647' + - '646' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:00:59 GMT + - Fri, 19 Mar 2021 12:02:57 GMT expires: - '-1' pragma: @@ -1726,7 +1481,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1736,26 +1491,25 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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=2020-11-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=2020-12-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''2021-03-02T11%3A00%3A36.0885069Z''\"","location":"eastus","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":12.8,"provisioningState":"Succeeded","fileSystemId":"bc67a181-2670-5022-f6ae-ec5f1659c9b8","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_7c988749","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-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''2021-03-19T12%3A02%3A30.9587238Z''\"","location":"eastus","tags":{"Tag1":"Value2"},"properties":{"mountTargets":[{"mountTargetId":"5494d51f-3f90-6788-18a0-a7fe2f730545","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":12.8,"provisioningState":"Succeeded","fileSystemId":"5494d51f-3f90-6788-18a0-a7fe2f730545","name":"cli-vol-000004","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_5dc6d64f31744a6392854706ea222d29_fc7edc7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1840' + - '1860' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:01:00 GMT + - Fri, 19 Mar 2021 12:02:57 GMT etag: - - W/"datetime'2021-03-02T11%3A00%3A36.0885069Z'" + - W/"datetime'2021-03-19T12%3A02%3A30.9587238Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_volume_parameters.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_volume_parameters.yaml index c41be96b0a1..36d5a046d5b 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_volume_parameters.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_volume_parameters.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": + {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,22 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '131' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000002?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\"\ - ,\r\n \"etag\": \"W/\\\"7b6109b1-552d-4ef3-a99a-a6f248bc39f1\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3e0a19ce-6699-4545-b260-2d0968558769\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"32413c2c-233f-4f3b-9650-acde5cb01a6d\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"b98e393c-5b9a-4d68-a947-e5f63a6ca9a4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -36,15 +36,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5a621afb-2c10-4ca3-961a-e4030db041a6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba031390-e4b4-48d0-92fe-c28b0fb6f7bb?api-version=2020-11-01 cache-control: - no-cache content-length: - - '770' + - '778' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:28:54 GMT + - Fri, 19 Mar 2021 14:02:28 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9945bf9-f30a-49d1-891a-a346751b5131 + - d46de5c5-68fe-4259-8617-19331940c4f6 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -77,9 +77,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5a621afb-2c10-4ca3-961a-e4030db041a6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba031390-e4b4-48d0-92fe-c28b0fb6f7bb?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:28:57 GMT + - Fri, 19 Mar 2021 14:02:31 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7bfc48a8-e472-485b-822a-b24d63a26f88 + - f6eef1df-46ed-4014-a1fd-6c493faf6861 status: code: 200 message: OK @@ -126,16 +126,16 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000002?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\"\ - ,\r\n \"etag\": \"W/\\\"649eeb96-8d66-4960-807f-f942f3128a59\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"05ff84a6-880a-4bad-8d1a-a7392f0bb96e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"32413c2c-233f-4f3b-9650-acde5cb01a6d\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b98e393c-5b9a-4d68-a947-e5f63a6ca9a4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -144,13 +144,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:28:57 GMT + - Fri, 19 Mar 2021 14:02:32 GMT etag: - - W/"649eeb96-8d66-4960-807f-f942f3128a59" + - W/"05ff84a6-880a-4bad-8d1a-a7392f0bb96e" expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e7ba650-f06c-4ffa-8451-4b9832ede414 + - ba646229-9110-4048-8454-81ac6a2fd744 status: code: 200 message: OK @@ -185,16 +185,16 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000002?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\"\ - ,\r\n \"etag\": \"W/\\\"649eeb96-8d66-4960-807f-f942f3128a59\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"05ff84a6-880a-4bad-8d1a-a7392f0bb96e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"32413c2c-233f-4f3b-9650-acde5cb01a6d\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b98e393c-5b9a-4d68-a947-e5f63a6ca9a4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\":\ @@ -203,13 +203,13 @@ interactions: cache-control: - no-cache content-length: - - '771' + - '779' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:28:59 GMT + - Fri, 19 Mar 2021 14:02:33 GMT etag: - - W/"649eeb96-8d66-4960-807f-f942f3128a59" + - W/"05ff84a6-880a-4bad-8d1a-a7392f0bb96e" expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d504e088-f0df-45eb-9b3a-306ae6d3430a + - 6a49ca27-f8c4-4ee3-a2a6-d0a36116cffc status: code: 200 message: OK @@ -247,32 +247,32 @@ interactions: Connection: - keep-alive Content-Length: - - '603' + - '611' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000002?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\"\ - ,\r\n \"etag\": \"W/\\\"37fd9600-f20b-43a9-8645-624c60f4ebc0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7b8bf6dc-678d-4f0a-b60d-b552a3bfc990\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"32413c2c-233f-4f3b-9650-acde5cb01a6d\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"b98e393c-5b9a-4d68-a947-e5f63a6ca9a4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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-000003\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\"\ - ,\r\n \"etag\": \"W/\\\"37fd9600-f20b-43a9-8645-624c60f4ebc0\\\"\"\ + ,\r\n \"etag\": \"W/\\\"7b8bf6dc-678d-4f0a-b60d-b552a3bfc990\\\"\"\ ,\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-000002/subnets/cli-subnet-000003/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"37fd9600-f20b-43a9-8645-624c60f4ebc0\\\ + ,\r\n \"etag\": \"W/\\\"7b8bf6dc-678d-4f0a-b60d-b552a3bfc990\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -286,15 +286,15 @@ interactions: : false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67633826-4210-480c-8c8c-5400c6c87c8a?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d34ad719-e24a-4bb1-a994-2b2b03f67552?api-version=2020-11-01 cache-control: - no-cache content-length: - - '2356' + - '2364' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:00 GMT + - Fri, 19 Mar 2021 14:02:34 GMT expires: - '-1' pragma: @@ -311,9 +311,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1ddeeab5-0b63-4176-81c8-9ee360dec1b3 + - e000fc51-06c2-4de1-ad25-c1b0c368a717 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -331,9 +331,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67633826-4210-480c-8c8c-5400c6c87c8a?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d34ad719-e24a-4bb1-a994-2b2b03f67552?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:03 GMT + - Fri, 19 Mar 2021 14:02:38 GMT expires: - '-1' pragma: @@ -362,7 +362,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a84e6d8-69b2-4717-8605-278ab40e0113 + - d2daae13-f1ec-438c-a10e-35129dafc30e status: code: 200 message: OK @@ -380,26 +380,26 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000002?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\"\ - ,\r\n \"etag\": \"W/\\\"95deb905-376a-4017-a833-e2699c9374d8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"6761dc05-b2e2-4ca6-b608-1718ee3a7fe2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"32413c2c-233f-4f3b-9650-acde5cb01a6d\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"b98e393c-5b9a-4d68-a947-e5f63a6ca9a4\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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-000003\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\"\ - ,\r\n \"etag\": \"W/\\\"95deb905-376a-4017-a833-e2699c9374d8\\\"\"\ + ,\r\n \"etag\": \"W/\\\"6761dc05-b2e2-4ca6-b608-1718ee3a7fe2\\\"\"\ ,\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-000002/subnets/cli-subnet-000003/delegations/0\"\ - ,\r\n \"etag\": \"W/\\\"95deb905-376a-4017-a833-e2699c9374d8\\\ + ,\r\n \"etag\": \"W/\\\"6761dc05-b2e2-4ca6-b608-1718ee3a7fe2\\\ \"\",\r\n \"properties\": {\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\ ,\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\"\ @@ -415,13 +415,13 @@ interactions: cache-control: - no-cache content-length: - - '2358' + - '2366' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:04 GMT + - Fri, 19 Mar 2021 14:02:38 GMT etag: - - W/"95deb905-376a-4017-a833-e2699c9374d8" + - W/"6761dc05-b2e2-4ca6-b608-1718ee3a7fe2" expires: - '-1' pragma: @@ -438,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f3fec7f-da49-41ca-a9fc-9411d76d853b + - dd9bd30f-7371-40b1-8d8a-5c3ab66eb6b1 status: code: 200 message: OK @@ -454,36 +454,33 @@ interactions: Connection: - keep-alive Content-Length: - - '56' + - '64' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A29%3A10.4699982Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T14%3A02%3A45.4100731Z''\"","location":"eastus","properties":{"encryption":{},"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e96bad5c-57d0-499e-812b-5489807cacef?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5cf54a30-8dcf-4b33-8932-f15502225bb6?api-version=2020-12-01 cache-control: - no-cache content-length: - - '433' + - '441' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:11 GMT + - Fri, 19 Mar 2021 14:02:45 GMT etag: - - W/"datetime'2021-03-02T11%3A29%3A10.4699982Z'" + - W/"datetime'2021-03-19T14%3A02%3A45.4100731Z'" expires: - '-1' pragma: @@ -497,7 +494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -507,7 +504,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -517,24 +514,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e96bad5c-57d0-499e-812b-5489807cacef?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5cf54a30-8dcf-4b33-8932-f15502225bb6?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/e96bad5c-57d0-499e-812b-5489807cacef","name":"e96bad5c-57d0-499e-812b-5489807cacef","status":"Succeeded","startTime":"2021-03-02T11:29:10.430935Z","endTime":"2021-03-02T11:29:10.5519194Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5cf54a30-8dcf-4b33-8932-f15502225bb6","name":"5cf54a30-8dcf-4b33-8932-f15502225bb6","status":"Succeeded","startTime":"2021-03-19T14:02:45.3662024Z","endTime":"2021-03-19T14:02:45.497131Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '574' + - '582' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:42 GMT + - Fri, 19 Mar 2021 14:03:16 GMT expires: - '-1' pragma: @@ -560,7 +556,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -570,26 +566,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-02T11%3A29%3A10.54305Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004","name":"cli-acc-000004","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-03-19T14%3A02%3A45.488132Z''\"","location":"eastus","properties":{"provisioningState":"Succeeded","encryption":{}}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '432' + - '441' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:43 GMT + - Fri, 19 Mar 2021 14:03:16 GMT etag: - - W/"datetime'2021-03-02T11%3A29%3A10.54305Z'" + - W/"datetime'2021-03-19T14%3A02%3A45.488132Z'" expires: - '-1' pragma: @@ -624,36 +619,33 @@ interactions: Connection: - keep-alive Content-Length: - - '88' + - '96' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004/capacityPools/cli-pool-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005","name":"cli-acc-000004/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A29%3A51.2928722Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005","name":"cli-acc-000004/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T14%3A03%3A23.2546725Z''\"","location":"eastus","properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/da256357-2ca8-4b7a-988a-32a9d6b34f0d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a04965fb-73c4-4768-83fb-25470ade158e?api-version=2020-12-01 cache-control: - no-cache content-length: - - '598' + - '606' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:29:52 GMT + - Fri, 19 Mar 2021 14:03:23 GMT etag: - - W/"datetime'2021-03-02T11%3A29%3A51.2928722Z'" + - W/"datetime'2021-03-19T14%3A03%3A23.2546725Z'" expires: - '-1' pragma: @@ -667,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -677,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -687,24 +679,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/da256357-2ca8-4b7a-988a-32a9d6b34f0d?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a04965fb-73c4-4768-83fb-25470ade158e?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/da256357-2ca8-4b7a-988a-32a9d6b34f0d","name":"da256357-2ca8-4b7a-988a-32a9d6b34f0d","status":"Succeeded","startTime":"2021-03-02T11:29:51.2358654Z","endTime":"2021-03-02T11:29:54.523934Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/a04965fb-73c4-4768-83fb-25470ade158e","name":"a04965fb-73c4-4768-83fb-25470ade158e","status":"Succeeded","startTime":"2021-03-19T14:03:23.2123229Z","endTime":"2021-03-19T14:03:23.3673112Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '613' + - '622' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:30:23 GMT + - Fri, 19 Mar 2021 14:03:54 GMT expires: - '-1' pragma: @@ -730,7 +721,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -740,26 +731,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004/capacityPools/cli-pool-000005?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005","name":"cli-acc-000004/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-02T11%3A29%3A54.5131502Z''\"","location":"eastus","properties":{"poolId":"298d76c9-2359-7c3f-ed51-a96425ab6786","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005","name":"cli-acc-000004/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-03-19T14%3A03%3A23.3597522Z''\"","location":"eastus","properties":{"poolId":"e81a345d-3dc6-e7f4-4f3a-84e92c366c7a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '694' + - '702' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:30:24 GMT + - Fri, 19 Mar 2021 14:03:54 GMT etag: - - W/"datetime'2021-03-02T11%3A29%3A54.5131502Z'" + - W/"datetime'2021-03-19T14%3A03%3A23.3597522Z'" expires: - '-1' pragma: @@ -785,7 +775,7 @@ interactions: body: '{"location": "eastus", "properties": {"creationToken": "cli-vol-000006", "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003", "smbEncryption": false, "smbContinuouslyAvailable": false, "encryptionKeySource": - "Microsoft.NetApp"}}' + "Microsoft.NetApp", "ldapEnabled": false}}' headers: Accept: - application/json @@ -796,38 +786,35 @@ interactions: Connection: - keep-alive Content-Length: - - '496' + - '526' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006","name":"cli-acc-000004/cli-pool-000005/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A30%3A34.3823517Z''\"","location":"eastus","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-000002/subnets/cli-subnet-000003","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006","name":"cli-acc-000004/cli-pool-000005/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A04%3A03.4970045Z''\"","location":"eastus","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-000002/subnets/cli-subnet-000003","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"provisioningState":"Creating"}}' headers: access-control-expose-headers: - Request-Context azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1005' + - '1033' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:30:35 GMT + - Fri, 19 Mar 2021 14:04:03 GMT etag: - - W/"datetime'2021-03-02T11%3A30%3A34.3823517Z'" + - W/"datetime'2021-03-19T14%3A04%3A03.4970045Z'" expires: - '-1' pragma: @@ -841,7 +828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -851,7 +838,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -861,26 +848,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:31:06 GMT + - Fri, 19 Mar 2021 14:04:34 GMT expires: - '-1' pragma: @@ -906,7 +892,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -916,26 +902,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:31:36 GMT + - Fri, 19 Mar 2021 14:05:05 GMT expires: - '-1' pragma: @@ -961,7 +946,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -971,26 +956,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:32:08 GMT + - Fri, 19 Mar 2021 14:05:35 GMT expires: - '-1' pragma: @@ -1016,7 +1000,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1026,26 +1010,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:32:38 GMT + - Fri, 19 Mar 2021 14:06:05 GMT expires: - '-1' pragma: @@ -1071,7 +1054,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1081,26 +1064,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:33:08 GMT + - Fri, 19 Mar 2021 14:06:35 GMT expires: - '-1' pragma: @@ -1126,7 +1108,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1136,26 +1118,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Creating","startTime":"2021-03-02T11:30:34.34296Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '634' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:33:40 GMT + - Fri, 19 Mar 2021 14:07:05 GMT expires: - '-1' pragma: @@ -1181,7 +1162,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1191,26 +1172,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/5b1ee145-e846-48c5-ba78-82115e91737c","name":"5b1ee145-e846-48c5-ba78-82115e91737c","status":"Succeeded","startTime":"2021-03-02T11:30:34.34296Z","endTime":"2021-03-02T11:33:48.7093322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Creating","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '645' + - '644' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:10 GMT + - Fri, 19 Mar 2021 14:07:35 GMT expires: - '-1' pragma: @@ -1236,7 +1216,61 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --account-name --pool-name --volume-name -l --service-level + --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl + --encryption-key-source --ldap-enabled + User-Agent: + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920?api-version=2020-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus/operationResults/b079650b-d525-4adf-bbdb-98cc922c6920","name":"b079650b-d525-4adf-bbdb-98cc922c6920","status":"Succeeded","startTime":"2021-03-19T14:04:03.4615873Z","endTime":"2021-03-19T14:07:46.9183159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '655' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 19 Mar 2021 14:08: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: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1246,28 +1280,27 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl - --encryption-key-source + --encryption-key-source --ldap-enabled User-Agent: - - python/3.8.7 (macOS-11.0.1-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-netapp/0.16.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - AZURECLI/2.21.0 azsdk-python-mgmt-netapp/2.0.0 Python/3.8.7 (macOS-11.2.2-x86_64-i386-64bit) 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-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006","name":"cli-acc-000004/cli-pool-000005/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-02T11%3A33%3A48.699791Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"5332a724-71e6-13a1-4586-78246b72e9f0","fileSystemId":"5332a724-71e6-13a1-4586-78246b72e9f0","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"5332a724-71e6-13a1-4586-78246b72e9f0","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_9308b5b2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006","name":"cli-acc-000004/cli-pool-000005/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-03-19T14%3A07%3A46.9098971Z''\"","location":"eastus","properties":{"mountTargets":[{"mountTargetId":"852f8842-5338-1918-7580-4408cf8de567","fileSystemId":"852f8842-5338-1918-7580-4408cf8de567","ipAddress":"10.0.0.4","smbServerFQDN":""}],"throughputMibps":6.4,"provisioningState":"Succeeded","fileSystemId":"852f8842-5338-1918-7580-4408cf8de567","name":"cli-vol-000006","serviceLevel":"Premium","creationToken":"cli-vol-000006","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_296cf49e4fd011e9b860ca0b30681545_899ff22f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1813' + - '1842' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Mar 2021 11:34:11 GMT + - Fri, 19 Mar 2021 14:08:07 GMT etag: - - W/"datetime'2021-03-02T11%3A33%3A48.699791Z'" + - W/"datetime'2021-03-19T14%3A07%3A46.9098971Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_backup_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_backup_commands.py index 63ea3842eff..58b9c967207 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_backup_commands.py @@ -56,7 +56,7 @@ def create_backup(self, account_name, pool_name, volume_name, backup_name, backu vaults = self.cmd("az netappfiles vault list -g {rg} -a %s" % account_name).get_output_in_json() # create backup policy - backup_policy_name = self.create_random_name(prefix='cli-sn-pol-', length=16) + backup_policy_name = self.create_random_name(prefix='cli-backup-pol-', length=16) backup_policy = self.cmd("az netappfiles account backup-policy create -g {rg} -a %s " "--backup-policy-name %s -l %s --daily-backups 1 --enabled true" % (account_name, backup_policy_name, LOCATION)).get_output_in_json() 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 d15d29f9ab2..d582b974db0 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 @@ -93,16 +93,20 @@ def test_active_directory(self): # add an active directory ad_name = 'cli-ad-name' kdc_ip = '172.16.254.1' + ldap_signing = True + allow_local_ldap_users = True acc_with_active_directory = self.cmd("netappfiles account ad add -g {rg} -n %s --username aduser " "--password aduser --smb-server-name SMBSERVER --dns '1.2.3.4' " - "--domain westcentralus --ad-name %s --kdc-ip %s" % - (account_name, ad_name, kdc_ip)).get_output_in_json() + "--domain westcentralus --ad-name %s --kdc-ip %s --ldap-signing %s " + "--allow-local-ldap-users %s" % + (account_name, ad_name, kdc_ip, ldap_signing, allow_local_ldap_users)).get_output_in_json() assert acc_with_active_directory['name'] == account_name assert acc_with_active_directory['activeDirectories'][0]['username'] == 'aduser' assert acc_with_active_directory['activeDirectories'][0]['status'] == 'Created' assert acc_with_active_directory['activeDirectories'][0]['adName'] == ad_name assert acc_with_active_directory['activeDirectories'][0]['aesEncryption'] is False - assert acc_with_active_directory['activeDirectories'][0]['ldapSigning'] is False + assert acc_with_active_directory['activeDirectories'][0]['ldapSigning'] is ldap_signing + assert acc_with_active_directory['activeDirectories'][0]['allowLocalNFSUsersWithLdap'] is allow_local_ldap_users # list active directory active_directory = self.cmd("netappfiles account ad list -g {rg} -n %s" % account_name).get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py index 7d6bdaf30a0..6c1b5dd425c 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py @@ -3,17 +3,15 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -import time import unittest - -LOCATION = "eastus2euap" +LOCATION = "southcentralusstage" @unittest.skip("Backup unstable so these tests need to be skipped for this version") class AzureNetAppFilesBackupServiceScenarioTest(ScenarioTest): def setup_vnet(self, vnet_name, subnet_name): self.cmd("az network vnet create -n %s -g {rg} -l %s --address-prefix 10.5.0.0/16" % - (vnet_name, LOCATION)) + (vnet_name, "southcentralus")) self.cmd("az network vnet subnet create -n %s --vnet-name %s --address-prefixes '10.5.0.0/24' " "--delegations 'Microsoft.Netapp/volumes' -g {rg}" % (subnet_name, vnet_name)) @@ -51,7 +49,7 @@ def create_backup(self, account_name, pool_name, volume_name, backup_name, backu self.create_volume(account_name, pool_name, volume_name) # get vault - vaults = self.cmd("az netappfiles vault list -g {rg} -a %s" % account_name).get_output_in_json() + vaults = self.get_vaults(account_name) # create backup policy backup_policy_name = self.create_random_name(prefix='cli-bp-pol-', length=16) @@ -66,9 +64,8 @@ def create_backup(self, account_name, pool_name, volume_name, backup_name, backu .get_output_in_json() # create backup - backup = self.cmd("az netappfiles volume backup create -g {rg} -a %s -p %s -v %s -l %s --backup-name %s" % - (account_name, pool_name, volume_name, LOCATION, backup_name)).get_output_in_json() - return backup + return self.cmd("az netappfiles volume backup create -g {rg} -a %s -p %s -v %s -l %s --backup-name %s" % + (account_name, pool_name, volume_name, LOCATION, backup_name)).get_output_in_json() def delete_backup(self, account_name, pool_name, volume_name): vaults = self.get_vaults(account_name) @@ -77,9 +74,8 @@ def delete_backup(self, account_name, pool_name, volume_name): account_name).get_output_in_json() # Delete - self.cmd("az netappfiles volume update -g {rg} -a %s -p %s -v %s --vault-id %s --backup-enabled %s " - "--backup-policy-id %s" % - (account_name, pool_name, volume_name, vaults[0]['id'], False, backup_policies[0]['id'])) + self.cmd("az netappfiles volume update -g {rg} -a %s -p %s -v %s --vault-id %s --backup-enabled %s " % + (account_name, pool_name, volume_name, vaults[0]['id'], False)) self.cmd("az netappfiles account backup-policy delete -g {rg} -a %s --backup-policy-name %s" % (account_name, backup_policies[0]['name'])) @@ -102,6 +98,8 @@ def test_create_delete_backup(self): (account_name, pool_name, volume_name)).get_output_in_json() assert len(backup_list) == 1 + self.delete_backup(account_name, pool_name, volume_name) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_backup_') def test_list_backup(self): # create backup @@ -117,14 +115,16 @@ def test_list_backup(self): assert len(backup_list) == 1 # create backup 2 - backup_name = self.create_random_name(prefix='cli-backup-', length=24) - self.create_backup(account_name, pool_name, volume_name, backup_name, True) + backup_name2 = self.create_random_name(prefix='cli-backup-', length=24) + self.create_backup(account_name, pool_name, volume_name, backup_name2, True) backup_list = self.cmd("netappfiles volume backup list -g {rg} -a %s -p %s -v %s" % (account_name, pool_name, volume_name)).get_output_in_json() assert len(backup_list) == 2 + self.delete_backup(account_name, pool_name, volume_name) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_backup_') def test_get_backup_by_name(self): # create backup @@ -144,6 +144,8 @@ def test_get_backup_by_name(self): backup_from_id = self.cmd("az netappfiles volume backup show --ids %s" % backup['id']).get_output_in_json() assert backup_from_id['name'] == account_name + "/" + pool_name + "/" + volume_name + "/" + backup_name + self.delete_backup(account_name, pool_name, volume_name) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_backup_') def test_update_backup(self): # create backup @@ -168,6 +170,8 @@ def test_update_backup(self): # there is a bug in update where the label is not updated - will be fixed later # assert backup['label'] == label + self.delete_backup(account_name, pool_name, volume_name) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_backup_') def test_disable_backup_for_volume(self): # create backup @@ -186,6 +190,8 @@ def test_disable_backup_for_volume(self): assert not volume['dataProtection']['backup']['backupEnabled'] + self.delete_backup(account_name, pool_name, volume_name) + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_backup_') def test_restore_backup_to_new_volume(self): # create backup diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_policy_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_policy_commands.py index b8a8276b1ab..c95902fb71a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_policy_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_policy_commands.py @@ -130,7 +130,7 @@ def test_update_backup_policy(self): enabled = True tags = "Tag1=Value1" self.cmd("az netappfiles account backup-policy create -g {rg} -a %s --backup-policy-name %s " - "-l %s -d %s -w %s -m %s -e %s --tags %s --enabled true" % + "-l %s -d %s -w %s -m %s -e %s --tags %s" % (account_name, backup_policy_name, LOCATION, daily_backups_to_keep, weekly_backups_to_keep, monthly_backups_to_keep, enabled, tags)).get_output_in_json() 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 4bfcb0a0401..d018e61f9b8 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 @@ -51,10 +51,8 @@ def test_create_pool_too_small(self): pool_name = self.create_random_name(prefix='cli-pool-', length=24) self.cmd("az netappfiles account create --resource-group {rg} --account-name '%s' -l %s" % (account_name, LOCATION)).get_output_in_json() - try: + with self.assertRaises(CLIError): self.cmd("az netappfiles pool create --resource-group {rg} --account-name %s --pool-name %s -l %s %s " % (account_name, pool_name, LOCATION, POOL_DEFAULT_TOO_SMALL)).get_output_in_json() - except Exception as ex: - assert isinstance(ex, CLIError) @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_pool_') def test_create_pool_string_size(self): @@ -62,10 +60,8 @@ def test_create_pool_string_size(self): pool_name = self.create_random_name(prefix='cli-pool-', length=24) self.cmd("az netappfiles account create --resource-group {rg} --account-name '%s' -l %s" % (account_name, LOCATION)).get_output_in_json() - try: + with self.assertRaises(CLIError): self.cmd("az netappfiles pool create --resource-group {rg} --account-name %s --pool-name %s -l %s %s " % (account_name, pool_name, LOCATION, POOL_DEFAULT_STRING_SIZE)).get_output_in_json() - except Exception as ex: - assert isinstance(ex, CLIError) @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_pool_') def test_list_pools(self): 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 448962ead88..e1450a94594 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 @@ -65,7 +65,7 @@ def test_create_delete_snapshots(self): assert len(snapshot_list) == 0 @serial_test() - @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_snap_') + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_snapshot_') def test_create_volume_from_snapshot(self): account_name = self.create_random_name(prefix='cli-acc-', length=24) pool_name = self.create_random_name(prefix='cli-pool-', length=24) @@ -109,7 +109,7 @@ def test_revert_volume_from_snapshot(self, rg): assert len(snapshot_list) == 1 snapshot = self.cmd("az netappfiles snapshot show -g {rg} -a %s -p %s -v %s -s %s" % (account_name, pool_name, volume_name, snapshot_name)).get_output_in_json() assert snapshot['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name - volume = self.cmd("az netappfiles volume revert --resource-group {rg} -a %s -p %s -v %s -s %s" % (account_name, pool_name, volume_name, snapshot["snapshotId"])) + self.cmd("az netappfiles volume revert --resource-group {rg} -a %s -p %s -v %s -s %s" % (account_name, pool_name, volume_name, snapshot["snapshotId"])) snapshot_list = self.cmd("az netappfiles snapshot list --resource-group %s --account-name %s --pool-name %s --volume-name %s" % (rg, account_name, pool_name, volume_name)).get_output_in_json() assert len(snapshot_list) == 1 @@ -138,7 +138,7 @@ def test_get_snapshot(self): snapshot_name = self.create_random_name(prefix='cli-sn-', length=24) volume = self.create_volume(account_name, pool_name, volume_name, '{rg}') assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name - snapshot = self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s" % (account_name, pool_name, volume_name, snapshot_name, ANF_LOCATION)).get_output_in_json() + self.cmd("az netappfiles snapshot create -g {rg} -a %s -p %s -v %s -s %s -l %s" % (account_name, pool_name, volume_name, snapshot_name, ANF_LOCATION)) 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_vault_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_vault_commands.py index 56f43503941..7967007db00 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_vault_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_vault_commands.py @@ -3,16 +3,14 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -import unittest -LOCATION = "eastus2euap" +LOCATION = "southcentralusstage" -@unittest.skip("Backup unstable so these tests need to be skipped for this version") class AzureNetAppFilesVaultServiceScenarioTest(ScenarioTest): def setup_vnet(self, vnet_name, subnet_name): self.cmd("az network vnet create -n %s -g {rg} -l %s --address-prefix 10.5.0.0/16" % - (vnet_name, LOCATION)) + (vnet_name, "southcentralus")) self.cmd("az network vnet subnet create -n %s --vnet-name %s --address-prefixes '10.5.0.0/24' " "--delegations 'Microsoft.Netapp/volumes' -g {rg}" % (subnet_name, vnet_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 e877bc99010..a3cd28b4606 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 @@ -139,7 +139,7 @@ def test_create_volume_with_subnet_in_different_rg(self): self.cmd("az group delete --yes -n %s" % (subnet_rg)) @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume_') - @ResourceGroupPreparer(name_prefix='cli_netappf_test_volume2_', parameter_name='replication_resourcegroup') + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_volume2_', parameter_name='replication_resourcegroup') def test_perform_replication(self, resource_group, replication_resourcegroup): # create source volume account_name = self.create_random_name(prefix='cli-acc-', length=24) @@ -407,10 +407,20 @@ def test_volume_parameters(self): pool_name = self.create_random_name(prefix='cli-pool-', length=24) volume_name = self.create_random_name(prefix='cli-vol-', length=24) + smb_encryption = False + smb_continuously_avl = False + encryption_key_source = "Microsoft.NetApp" + ldap_enabled = False + self.prepare_for_volume_creation('{rg}', account_name, pool_name, vnet_name, subnet_name) volume = self.cmd("az netappfiles volume create --resource-group {rg} --account-name %s --pool-name %s " - "--volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s " - "--smb-encryption %s --smb-continuously-avl %s --encryption-key-source %s" % + "--volume-name %s -l %s %s --file-path %s --vnet %s --subnet %s --smb-encryption %s " + "--smb-continuously-avl %s --encryption-key-source %s --ldap-enabled %s" % (account_name, pool_name, volume_name, RG_LOCATION, VOLUME_DEFAULT, volume_name, vnet_name, - subnet_name, False, False, "Microsoft.NetApp")).get_output_in_json() + subnet_name, smb_encryption, smb_continuously_avl, encryption_key_source, ldap_enabled) + ).get_output_in_json() assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name + assert volume['smbEncryption'] == smb_encryption + assert volume['smbContinuouslyAvailable'] == smb_continuously_avl + assert volume['encryptionKeySource'] == encryption_key_source + assert volume['ldapEnabled'] == ldap_enabled diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 7d5f6848484..78ef1c8644a 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -60,7 +60,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==3.0.0 azure-mgmt-monitor==2.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.16.0 +azure-mgmt-netapp==2.0.0 azure-mgmt-network==18.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 05310ac2f42..f47eaf3d76a 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -61,7 +61,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==3.0.0 azure-mgmt-monitor==2.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.16.0 +azure-mgmt-netapp==2.0.0 azure-mgmt-network==18.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 5d019828830..a9e01938014 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -61,7 +61,7 @@ azure-mgmt-marketplaceordering==0.2.1 azure-mgmt-media==3.0.0 azure-mgmt-monitor==2.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==0.16.0 +azure-mgmt-netapp==2.0.0 azure-mgmt-network==18.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index c195d9485a2..73a24cd7118 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -103,7 +103,7 @@ 'azure-mgmt-media~=3.0', 'azure-mgmt-monitor~=2.0.0', 'azure-mgmt-msi~=0.2', - 'azure-mgmt-netapp~=0.16.0', + 'azure-mgmt-netapp~=2.0.0', 'azure-mgmt-network~=18.0.0', 'azure-mgmt-policyinsights~=0.5.0', 'azure-mgmt-privatedns~=0.1.0',